1 2 3 4 5 6 7 8 9 10 11 12
/* TEST_OUTPUT: --- fail_compilation/fail306.d(11): Error: cannot perform array operations on `void[]` arrays --- */ void bar() { void [] x; x[] = -x[]; }