mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
0e0d1972f9
- The counterexamples sometimes do appear and the tests fail.
24 lines
978 B
Solidity
24 lines
978 B
Solidity
contract C {
|
|
uint c;
|
|
function f() public payable {
|
|
require(msg.value > 10);
|
|
++c;
|
|
}
|
|
function inv() public view {
|
|
assert(address(this).balance >= c * 11); // should hold
|
|
assert(address(this).balance >= c * 12); // should fail
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: all
|
|
// SMTIgnoreCex: yes
|
|
// SMTIgnoreOS: macos
|
|
// ----
|
|
// Warning 4984: (82-85): CHC: Overflow (resulting value larger than 2**256 - 1) might happen here.
|
|
// Warning 4984: (154-160): CHC: Overflow (resulting value larger than 2**256 - 1) might happen here.
|
|
// Warning 4984: (212-218): CHC: Overflow (resulting value larger than 2**256 - 1) might happen here.
|
|
// Warning 6328: (180-219): CHC: Assertion violation happens here.
|
|
// Warning 2661: (82-85): BMC: Overflow (resulting value larger than 2**256 - 1) happens here.
|
|
// Warning 2661: (154-160): BMC: Overflow (resulting value larger than 2**256 - 1) happens here.
|
|
// Warning 2661: (212-218): BMC: Overflow (resulting value larger than 2**256 - 1) happens here.
|