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









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