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

15 lines
212 B
Solidity

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