solidity/test/libsolidity/syntaxTests/functionTypes/conversion_to_address.sol
2019-08-19 14:58:05 +02:00

8 lines
339 B
Solidity

contract C {
function f() public view returns (address) {
return address(this.f);
}
}
// ----
// TypeError: (77-92): Explicit type conversion not allowed from "function () view external returns (address)" to "address". To obtain the address of the contract of the function, you can use the .address member of the function.