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

6 lines
89 B
Solidity
Raw Normal View History

contract C {
function f(address payable a) public {
selfdestruct(a);
}
}