solidity/test/libsolidity/syntaxTests/functionTypes/external_function_type_to_address.sol

6 lines
101 B
Solidity

contract C {
function f() public view returns (address) {
return this.f.address;
}
}