solidity/test/libsolidity/smtCheckerTests/operators/conditional_assignment_function_2.sol
2023-03-09 14:59:32 +01:00

22 lines
637 B
Solidity

contract C {
function f(uint a) internal pure returns (uint b) {
require(a < 1000);
return a * a;
}
function g(uint a) internal pure returns (uint b) {
require(a < 1000);
return a + 100;
}
function h(uint a) public pure {
uint c = a < 5 ? g(a) : f(a);
assert(c >= 25);
assert(c < 20); // should fail
}
}
// ====
// SMTEngine: all
// SMTIgnoreCex: yes
// ----
// Warning 6328: (345-359): CHC: Assertion violation happens here.
// Info 1391: CHC: 3 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.