solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/264_mapping_in_memory_array.sol
2020-06-30 16:53:41 +05:30

8 lines
236 B
Solidity

contract C {
function f(uint size) public {
mapping(uint => uint) storage x = new mapping(uint => uint)[](4);
}
}
// ----
// TypeError 1164: (94-117): Array containing a (nested) mapping cannot be constructed in memory.