solidity/test/libsolidity/smtCheckerTests/operators/mod_even.sol
2020-08-14 12:58:27 +02:00

14 lines
283 B
Solidity

pragma experimental SMTChecker;
contract C
{
function f(uint x) public pure {
require(x < 10000);
uint y = x * 2;
assert((y % 2) == 0);
}
}
// ----
// Warning 1218: (113-118): Error trying to invoke SMT solver.
// Warning 1218: (122-142): Error trying to invoke SMT solver.