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

23 lines
524 B
Solidity
Raw Normal View History

2021-08-20 16:47:38 +00:00
contract C {
constructor() payable {
require(msg.value > 100);
}
uint c;
function f(address payable _a, uint _v) public {
require(_v < 10);
require(c < 2);
++c;
_a.transfer(_v);
}
function inv() public view {
assert(address(this).balance > 80); // should hold
assert(address(this).balance > 90); // should fail
}
}
// ====
// SMTEngine: all
2021-08-23 09:30:12 +00:00
// SMTIgnoreCex: yes
2021-08-20 16:47:38 +00:00
// ----
2021-08-23 09:30:12 +00:00
// Warning 6328: (280-314): CHC: Assertion violation happens here.
2021-08-20 16:47:38 +00:00
// Warning 1236: (175-190): BMC: Insufficient funds happens here.