2020-09-18 17:07:58 +00:00
|
|
|
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).
|
2020-10-13 16:48:59 +00:00
|
|
|
// Removed because current Spacer seg faults in cex generation.
|
|
|
|
//assert(address(this).balance == t);
|
2020-09-18 17:07:58 +00:00
|
|
|
}
|
|
|
|
}
|
2021-03-31 15:11:54 +00:00
|
|
|
// ====
|
|
|
|
// SMTEngine: all
|
2020-09-18 17:07:58 +00:00
|
|
|
// ----
|