solidity/test/libsolidity/smtCheckerTests/loops/for_1_break_fail.sol
2019-11-05 09:28:59 +01:00

19 lines
287 B
Solidity

pragma experimental SMTChecker;
contract C
{
function f(uint x, bool b) public pure {
for (; x < 10; ) {
if (b)
++x;
else {
break;
}
}
// Fails because the loop might break.
assert(x >= 10);
}
}
// ----
// Warning: (201-216): Assertion violation happens here