solidity/test/libsolidity/syntaxTests/types/address/contract_receive_to_payable_address.sol

10 lines
137 B
Solidity
Raw Normal View History

contract C {
function f() public view {
address payable a = address(this);
a;
}
receive() external payable {
}
}
// ----