solidity/test/libsolidity/smtCheckerTests/loops/while_loop_simple_4.sol
2019-09-13 12:40:53 +02:00

11 lines
231 B
Solidity

pragma experimental SMTChecker;
// Check that negation of condition is not assumed after the body anymore
contract C {
function f(uint x) public pure {
while (x == 2) {
}
assert(x != 2);
}
}
// ----