Comment #1 by dlang-bugzilla — 2015-09-01T11:57:51Z
I'm surprised you can use struct initializers in an array, I thought you could only use them to immediately initialize a single variable.
I think this is an enhancement request, not a bug, unless the language spec says this should work.
Comment #2 by k.hara.pg — 2015-09-01T12:44:37Z
(In reply to Vladimir Panteleev from comment #1)
> I'm surprised you can use struct initializers in an array
The struct initializers are used inside "array initializers*. There's no syntactic problem, and should it work.
*** This issue has been marked as a duplicate of issue 6469 ***
Comment #3 by dlang-bugzilla — 2015-09-01T12:46:45Z
(In reply to Kenji Hara from comment #2)
> The struct initializers are used inside "array initializers*. There's no
> syntactic problem, and should it work.
Makes sense, thanks.