mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
27 lines
1.2 KiB
Solidity
27 lines
1.2 KiB
Solidity
|
contract C {
|
||
|
bool once;
|
||
|
function f() public payable {
|
||
|
require(!once);
|
||
|
once = true;
|
||
|
require(msg.value == 10);
|
||
|
assert(address(this).balance >= 10); // should hold
|
||
|
assert(address(this).balance >= 20); // should fail
|
||
|
g();
|
||
|
}
|
||
|
function g() internal view {
|
||
|
assert(address(this).balance >= 10); // should hold
|
||
|
assert(address(this).balance >= 20); // should fail
|
||
|
h();
|
||
|
}
|
||
|
function h() internal view {
|
||
|
assert(address(this).balance >= 10); // should hold
|
||
|
assert(address(this).balance >= 20); // should fail
|
||
|
}
|
||
|
}
|
||
|
// ====
|
||
|
// SMTEngine: all
|
||
|
// ----
|
||
|
// Warning 6328: (173-208): CHC: Assertion violation happens here.\nCounterexample:\nonce = true\n\nTransaction trace:\nC.constructor()\nState: once = false\nC.f(){ value: 10 }
|
||
|
// Warning 6328: (321-356): CHC: Assertion violation happens here.\nCounterexample:\nonce = true\n\nTransaction trace:\nC.constructor()\nState: once = false\nC.f(){ value: 10 }\n C.g(){ value: 10 } -- internal call
|
||
|
// Warning 6328: (469-504): CHC: Assertion violation happens here.\nCounterexample:\nonce = true\n\nTransaction trace:\nC.constructor()\nState: once = false\nC.f(){ value: 10 }\n C.g(){ value: 10 } -- internal call\n C.h(){ value: 10 } -- internal call
|