solidity/test/libsolidity/smtCheckerTests/control_flow/branches_assert_condition_2.sol
2021-04-08 21:03:39 +02:00

17 lines
294 B
Solidity

contract C {
function f(uint x) public pure {
if (x > 10) {
assert(x > 9);
}
else if (x > 2)
{
assert(x <= 10 && x > 2);
}
else
{
assert(0 <= x && x <= 2);
}
}
}
// ====
// SMTEngine: all