solidity/test/libsolidity/smtCheckerTests/blockchain_state/decreasing_balance.sol

21 lines
613 B
Solidity
Raw Normal View History

2020-09-18 17:07:58 +00:00
pragma experimental SMTChecker;
contract C {
uint t;
constructor() {
t = address(this).balance;
}
function f(address payable a, uint x) public {
require(address(this).balance >= x);
a.transfer(x);
}
function inv() public view {
// If only looking at `f`, it looks like this.balance always decreases.
// However, the edge case of a contract `selfdestruct` sending its remaining balance
// to this contract should make the claim false (since there's no fallback/receive here).
// Removed because current Spacer seg faults in cex generation.
//assert(address(this).balance == t);
2020-09-18 17:07:58 +00:00
}
}
// ----