Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail306.d
blob: ffe3cf7451895acd314df4b4b0c72dee23ead5e8 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail306.d(11): Error: cannot perform array operations on `void[]` arrays
---
*/
void
bar
()
{
void
[]
x
;
x
[]
=
-
x
[];
}