aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/conversion/function_type_payable_pure.sol
blob: 78bada5126de75a25cb8d541232d409a5bfae745 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
contract C {
    function h() payable external {
    }
    function f() view external returns (bytes4) {
        function () pure external g = this.h;
        return g.selector;
    }
}
// ----
// TypeError: (113-149): Type function () payable external is not implicitly convertible to expected type function () pure external.