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

8 lines
196 B
Solidity
Raw Normal View History

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