www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 12787] New: can't nest associative arrays and arrays

https://issues.dlang.org/show_bug.cgi?id=12787

          Issue ID: 12787
           Summary: can't nest associative arrays and arrays
           Product: D
           Version: D2
          Hardware: x86_64
                OS: Linux
            Status: NEW
          Severity: major
          Priority: P1
         Component: DMD
          Assignee: nobody puremagic.com
          Reporter: vlevenfeld gmail.com

this code will fail to compile at the declaration of a2, with Error: not an
associative array initializer

int[][char][][] a1 = [
    [
        ['a':[1,2,3],'b':[2,3,4],'c':[3,4,5]],
        ['d':[6,7,8],'e':[7,8,9]]
    ], 
    [
        ['a':[1,2,3],'b':[2,3,4],'c':[3,4,5]],
        ['d':[6,7,8],'e':[7,8,9]]
    ]
];
int[][char][][int] a2 = [
    1000:[
        ['a':[1,2,3],'b':[2,3,4],'c':[3,4,5]],
        ['d':[6,7,8],'e':[7,8,9]]
    ], 
    2000:[
        ['a':[1,2,3],'b':[2,3,4],'c':[3,4,5]],
        ['d':[6,7,8],'e':[7,8,9]]
    ]
];

--
May 22 2014