aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/location_specifiers_for_params_multi.sol
blob: c6155c09015a1429c4de06b3701f5c3574818c9f (plain) (blame)
1
2
3
4
5
6
contract Foo {
    function f(uint[] storage memory constant x, uint[] memory calldata y) internal { }
}
// ----
// ParserError: (45-51): Location already specified.
// ParserError: (78-86): Location already specified.