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

16 lines
349 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
// Check that side-effects of condition are taken into account
contract C {
function f(uint x, uint y) public pure {
x = 7;
while ((x = y) > 0) {
2020-02-12 02:21:42 +00:00
--y;
}
assert(x == 7);
}
}
// ====
// SMTSolvers: z3
// ----
// Warning 6328: (224-238): CHC: Assertion violation happens here.