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

20 lines
465 B
Solidity
Raw Normal View History

2018-11-09 17:50:06 +00:00
pragma experimental SMTChecker;
contract C {
function f(uint x) public pure {
require(x == 2);
uint y;
// The loop condition is always true,
// but since x is touched in the body
// we can't infer that.
for (; x == 2;) {
x = 2;
}
// False positive due to resetting x.
assert(x == 2);
}
}
// ====
// SMTSolvers: z3
2018-11-09 17:50:06 +00:00
// ----
// Warning 2072: (115-121): Unused local variable.