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

6 lines
101 B
Solidity
Raw Normal View History

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