2020-11-09 13:50:41 +00:00
|
|
|
contract C {
|
|
|
|
address lastCaller;
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
lastCaller = msg.sender;
|
|
|
|
}
|
|
|
|
|
|
|
|
modifier log {
|
|
|
|
lastCaller = msg.sender;
|
|
|
|
_;
|
|
|
|
}
|
|
|
|
|
|
|
|
function test() log public {
|
|
|
|
assert(lastCaller == msg.sender);
|
|
|
|
this.g();
|
|
|
|
assert(lastCaller == address(this));
|
|
|
|
assert(lastCaller == msg.sender);
|
|
|
|
assert(lastCaller == address(0));
|
|
|
|
}
|
|
|
|
|
|
|
|
function g() log public {
|
|
|
|
}
|
|
|
|
}
|
2020-12-02 17:40:48 +00:00
|
|
|
// ====
|
2021-03-31 15:11:54 +00:00
|
|
|
// SMTEngine: all
|
2020-12-02 17:40:48 +00:00
|
|
|
// SMTIgnoreCex: yes
|
2020-11-09 13:50:41 +00:00
|
|
|
// ----
|
2021-03-31 15:11:54 +00:00
|
|
|
// Warning 6328: (314-346): CHC: Assertion violation happens here.
|
|
|
|
// Warning 6328: (356-388): CHC: Assertion violation happens here.
|