mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
12 lines
164 B
D
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[];
|
|
}
|