solidity/test/libsolidity/smtCheckerTests/loops/for_1_continue_fail.sol
2021-01-12 14:00:07 +01:00

18 lines
474 B
Solidity

pragma experimental SMTChecker;
contract C
{
function f(uint x, bool b) public pure {
require(x < 10);
for (; x < 10; ) {
++x;
}
assert(x > 15);
}
}
// ====
// SMTSolvers: z3
// ----
// Warning 5667: (66-72): Unused function parameter. Remove or comment out the variable name to silence this warning.
// Warning 6328: (142-156): CHC: Assertion violation happens here.\nCounterexample:\n\nx = 10\nb = false\n\nTransaction trace:\nC.constructor()\nC.f(9, false)