aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/205_overwrite_storage_location_external.sol
blob: 99c9827d6abcdac0e537682d5dd2dccb8b90c653 (plain) (blame)
1
2
3
4
5
contract C {
    function f(uint[] storage a) external {}
}
// ----
// TypeError: (28-44): Location has to be calldata for external functions (remove the "memory" or "storage" keyword).