dmd/compiler/test/fail_compilation/fail306.d
2022-07-09 18:53:07 +02:00

12 lines
164 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail306.d(11): Error: cannot perform array operations on `void[]` arrays
---
*/
void bar()
{
void [] x;
x[] = -x[];
}