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

11 lines
327 B
Solidity

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