aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/types/mapping/array_argument_external.sol
blob: 8dea690702251419ac2f836870e46f370c186aec (plain) (blame)
1
2
3
4
5
6
contract C {
    function f(mapping(uint => uint)[] storage) external pure {
    }
}
// ----
// TypeError: (28-51): Location has to be calldata for external functions (remove the "memory" or "storage" keyword).