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

8 lines
235 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: (77-92): Explicit type conversion not allowed from "function () view external returns (address)" to "address".