solidity/test/libsolidity/smtCheckerTests/special/this_state.sol
2021-04-20 17:38:29 +02:00

13 lines
187 B
Solidity

contract C
{
address thisAddr;
function f(address a) public {
require(a == address(this));
thisAddr = a;
assert(thisAddr == address(this));
}
}
// ====
// SMTEngine: all
// ----