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

11 lines
332 B
Solidity

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