solidity/test/libsolidity/smtCheckerTests/bmc_coverage/staticcall_balance.sol

14 lines
416 B
Solidity
Raw Normal View History

contract C {
function f(address _a) public view {
uint b1 = address(this).balance;
_a.staticcall("");
uint b2 = address(this).balance;
assert(b1 == b2); // should hold
}
}
// ====
// SMTEngine: bmc
// ----
// Warning 9302: (88-105): Return value of low-level calls not used.
2023-02-09 16:07:13 +00:00
// Info 6002: BMC: 1 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.