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

[email protected] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from [email protected] ---
Probably this is already reported in another Bugzilla issue.

This is a workaround until this problem gets fixed:

void main() {
    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 = cast()[
        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]]
        ]
    ];
}

--

Reply via email to