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

8 lines
344 B
Solidity
Raw Normal View History

2019-08-15 12:01:07 +00:00
contract C {
function f() public view returns (address) {
return address(this.f);
}
}
// ----
// TypeError 5030: (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.