solidity/test/libsolidity/smtCheckerTests/loops/while_loop_simple_1.sol

16 lines
308 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
// Check that variables are cleared
contract C {
function f(uint x) public pure {
x = 2;
while (x > 1) {
2018-11-09 17:50:06 +00:00
x = 1;
}
assert(x == 2);
}
}
// ====
// SMTSolvers: z3
// ----
2018-11-09 17:50:06 +00:00
// Warning: (194-208): Assertion violation happens here