solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/264_mapping_in_memory_array.sol

8 lines
201 B
Solidity

contract C {
function f(uint size) public {
mapping(uint => uint) storage x = new mapping(uint => uint)[](4);
}
}
// ----
// TypeError 1164: (94-117): Type cannot live outside storage.