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

14 lines
175 B
Solidity

pragma experimental SMTChecker;
contract C {
function f(uint x) public pure {
x = 2;
while (x > 1) {
if (x > 10)
x = 2;
else
--x;
}
assert(x < 2);
}
}