Comment #0 by bearophile_hugs — 2013-07-20T12:47:14Z
void main() {
int[] a = [0, 0];
a[] += [10, 20][];
}
DMD 2.064alpha gives:
test.d(3): Error: invalid array operation a[] += [10, 20] (did you forget a [] ?)
I think this used to work.
Maybe related to Issue 10626