mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
27 lines
935 B
Solidity
27 lines
935 B
Solidity
contract D {
|
|
constructor(uint _x) { x = _x; }
|
|
function setD(uint _x) public { x = _x; }
|
|
uint public x;
|
|
}
|
|
|
|
contract C {
|
|
function f() public {
|
|
address d = address(new D(42));
|
|
assert(D(d).x() == 42); // should hold
|
|
assert(D(d).x() == 21); // should fail
|
|
d.call(abi.encodeCall(D.setD, (21)));
|
|
assert(D(d).x() == 21); // should hold, but false positive cus low level calls are not handled precisely
|
|
assert(D(d).x() == 42); // should fail
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: chc
|
|
// SMTExtCalls: trusted
|
|
// SMTIgnoreCex: yes
|
|
// ----
|
|
// Warning 9302: (263-299): Return value of low-level calls not used.
|
|
// Warning 6328: (222-244): CHC: Assertion violation happens here.
|
|
// Warning 6328: (303-325): CHC: Assertion violation happens here.
|
|
// Warning 6328: (410-432): CHC: Assertion violation happens here.
|
|
// Info 1391: CHC: 1 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.
|