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

13 lines
203 B
Solidity

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