mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
5ca7a24896
Modeling external calls to this, since we can trust these calls. fixed problem with transaction data not being restored after trusted external call update to the tests additional tests changelog entry added tests for external getters of this
29 lines
610 B
Solidity
29 lines
610 B
Solidity
pragma experimental SMTChecker;
|
|
|
|
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 {
|
|
}
|
|
}
|
|
// ----
|
|
// Warning 6328: (347-379): CHC: Assertion violation happens here.
|
|
// Warning 6328: (389-421): CHC: Assertion violation happens here.
|