solidity/test/libsolidity/smtCheckerTests/operators/mod_n.sol

11 lines
146 B
Solidity
Raw Normal View History

2019-04-05 15:07:08 +00:00
pragma experimental SMTChecker;
contract C
{
function f(uint x, uint y) public pure {
require(y > 0);
uint z = x % y;
assert(z < y);
}
}