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

10 lines
183 B
Solidity
Raw Normal View History

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