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

6 lines
97 B
Solidity
Raw Normal View History

2018-03-16 10:20:06 +00:00
contract C {
function f() public returns (address) {
return address(this.f);
}
}