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

11 lines
165 B
Solidity
Raw Normal View History

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