solidity/test/libsolidity/syntaxTests/types/mapping/mapping_array_return_external.sol

7 lines
231 B
Solidity
Raw Normal View History

contract C {
function f() external pure returns (mapping(uint=>uint)[] storage m) {
}
}
// ----
2020-05-14 17:02:45 +00:00
// TypeError: (53-84): Data location must be "memory" or "calldata" for return parameter in function, but "storage" was given.