aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/conversion/function_type_pure_payable.sol
blob: cd4e9b4e690953be884f0b94a9b63b4d84e4f692 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









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