solidity/test/libsolidity/smtCheckerTests/verification_target/constant_condition_2.sol

10 lines
201 B
Solidity
Raw Normal View History

contract C {
function f(uint x) public pure {
if (x >= 10) { if (x < 10) { revert(); } }
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
// ----
2021-03-31 15:11:54 +00:00
// Warning 6838: (77-83): BMC: Condition is always false.