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

15 lines
220 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C
{
function f(uint x) public pure {
for (x = 0; x < 10; ++x)
break;
assert(x == 0);
}
}
// ====
// SMTSolvers: z3
// ----
// Warning 5740: (102-105): Unreachable code.