2020-11-26 16:14:58 +00:00
|
|
|
pragma experimental SMTChecker;
|
|
|
|
|
|
|
|
contract D {
|
|
|
|
}
|
|
|
|
|
|
|
|
contract C {
|
|
|
|
struct S {
|
|
|
|
D d;
|
|
|
|
function () external returns (uint) f;
|
|
|
|
}
|
|
|
|
|
|
|
|
S public s;
|
|
|
|
|
|
|
|
function test() public view {
|
|
|
|
(D d, function () external returns (uint) f) = this.s();
|
|
|
|
assert(d == s.d); // should hold
|
|
|
|
assert(address(d) == address(this)); // should fail
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
|
|
|
// Warning 2072: (179-216): Unused local variable.
|
2020-12-02 17:40:48 +00:00
|
|
|
// Warning 6328: (267-302): CHC: Assertion violation happens here.\nCounterexample:\ns = {d: 0, f: 0}\n\n\n\nTransaction trace:\nconstructor()\nState: s = {d: 0, f: 0}\ntest()
|