solidity/test/libsolidity/syntaxTests/conversion/function_type_pure_payable.sol

11 lines
332 B
Solidity

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