https://issues.dlang.org/show_bug.cgi?id=13497
Kenji Hara <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED |--- --- Comment #4 from Kenji Hara <[email protected]> --- Sorry my fix was incomplete. I found some unfixed cases. void main() { int[1] a; //auto b1 = (a[] * a[])[]; // error, expected auto b2 = (a[] * a[])[0..1]; // Internal error: e2ir.c 1911 int[] c; //c = (a[] * a[])[]; // error, expected c = (a[] * a[])[0..1]; // Internal error: e2ir.c 1911 } --
