mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
32 lines
1.1 KiB
Solidity
32 lines
1.1 KiB
Solidity
contract D {
|
|
uint x;
|
|
function inc() public { ++x; }
|
|
function f() public view returns (uint) { return x; }
|
|
}
|
|
|
|
contract C {
|
|
function f() public {
|
|
D d = new D();
|
|
assert(d.f() == 0); // should hold
|
|
d.inc();
|
|
assert(d.f() == 1); // should hold
|
|
d = new D();
|
|
assert(d.f() == 0); // should hold
|
|
assert(d.f() == 1); // should fail
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: all
|
|
// SMTExtCalls: trusted
|
|
// SMTIgnoreOS: macos
|
|
// ----
|
|
// Warning 4984: (47-50): CHC: Overflow (resulting value larger than 2**256 - 1) might happen here.
|
|
// Warning 6328: (167-185): CHC: Assertion violation might happen here.
|
|
// Warning 6328: (215-233): CHC: Assertion violation might happen here.
|
|
// Warning 6328: (267-285): CHC: Assertion violation might happen here.
|
|
// Warning 6328: (304-322): CHC: Assertion violation happens here.
|
|
// Warning 2661: (47-50): BMC: Overflow (resulting value larger than 2**256 - 1) happens here.
|
|
// Warning 4661: (167-185): BMC: Assertion violation happens here.
|
|
// Warning 4661: (215-233): BMC: Assertion violation happens here.
|
|
// Warning 4661: (267-285): BMC: Assertion violation happens here.
|