solidity/test/libsolidity/smtCheckerTests/loops/for_loop_unreachable_1.sol
2019-12-09 15:32:08 +01:00

13 lines
249 B
Solidity

pragma experimental SMTChecker;
contract C {
function f(uint x) public pure {
require(x == 2);
for (; x > 2;) {}
assert(x == 2);
}
}
// ====
// SMTSolvers: z3
// ----
// Warning: (122-127): Condition is always false.