solidity/test/libsolidity/smtCheckerTests/control_flow/branches_assert_condition_2.sol
2021-04-20 17:38:29 +02:00

18 lines
295 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