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

12 lines
185 B
Solidity
Raw Normal View History

contract C {
function f(uint x) public pure {
for (uint y = 2; x < 10; ) {
assert(y == 2);
}
}
}
// ====
2021-03-31 15:11:54 +00:00
// SMTEngine: all
// SMTSolvers: z3
// ----