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

11 lines
178 B
Solidity

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