solidity/test/libsolidity/semanticTests/expressions/uncalled_address_transfer_send.sol

13 lines
196 B
Solidity

contract TransferTest {
fallback() external payable {
// This used to cause an ICE
address(this).transfer;
}
function f() pure public {}
}
// ====
// compileViaYul: also
// ----
// f() ->