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

19 lines
369 B
Solidity

contract C
{
function f() public pure {
if (true) {
address a = g();
assert(a == address(0));
}
}
function g() public pure returns (address) {
address a;
a = address(0);
return a;
}
}
// ====
// SMTEngine: all
// ----
// Info 1391: CHC: 1 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.