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

18 lines
213 B
Solidity

pragma experimental SMTChecker;
contract C
{
function f(uint x, bool b) public pure {
require(x < 10);
for (; x < 10; ) {
if (b)
++x;
else {
x = 20;
break;
}
}
assert(x >= 10);
}
}