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









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