solidity/test/libsolidity/syntaxTests/functionTypes/external_function_type_to_address.sol
2018-04-11 22:00:04 +02:00

6 lines
97 B
Solidity

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