solidity/test/libsolidity/syntaxTests/conversion/function_type_nonpayable_view.sol
2018-11-08 10:51:51 +01:00

11 lines
311 B
Solidity

contract C {
function h() external {
}
function f() view external returns (bytes4) {
function () view external g = this.h;
return g.selector;
}
}
// ----
// TypeError: (105-141): Type function () external is not implicitly convertible to expected type function () view external.