solidity/test/libsolidity/smtCheckerTests/operators/mod_n.sol
2021-04-08 21:03:39 +02:00

12 lines
147 B
Solidity

contract C
{
function f(uint x, uint y) public pure {
require(y > 0);
uint z = x % y;
assert(z < y);
}
}
// ====
// SMTEngine: all
// ----