aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/types/mapping/function_type_argument_external.sol
blob: 7fe74fb63c8dde5053454fc23b075485fb2680a2 (plain) (blame)
1
2
3
4
5
6
contract C {
    function f(function(mapping(uint=>uint) storage) external) public pure {
    }
}
// ----
// TypeError: (37-56): Internal type cannot be used for external function type.