aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/264_mapping_in_memory_array.sol
blob: f0bb557bd3cb9ae3755d4229876f46f85b048892 (plain) (blame)
1
2
3
4
5
6
7
contract C {
    function f(uint size) public {
        mapping(uint => uint) x = new mapping(uint => uint)[](4);
    }
}
// ----
// TypeError: (86-109): Type cannot live outside storage.