solidity/test/libsolidity/smtCheckerTests/types/rational_large_1.sol
2019-03-11 12:53:49 +01:00

11 lines
213 B
Solidity

pragma experimental SMTChecker;
contract c {
function f() public pure returns (uint) {
uint x = 8e130%9;
assert(x == 8);
assert(x != 8);
}
}
// ----
// Warning: (128-142): Assertion violation happens here