solidity/test/libsolidity/smtCheckerTests/functions/this_external_call_sender.sol
2021-04-08 21:03:39 +02:00

30 lines
624 B
Solidity

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 {
}
}
// ====
// SMTEngine: all
// SMTIgnoreCex: yes
// ----
// Warning 6328: (314-346): CHC: Assertion violation happens here.
// Warning 6328: (356-388): CHC: Assertion violation happens here.