Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
ice9013.d
blob: 47a451b550489a581b743146be42637f6d7ad4b9 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/ice9013.d(9): Error: undefined identifier `missing`
---
*/
void
main
()
{
foreach
(
i
;
0
..
missing
)
int
[]
foo
=
cast
(
int
[])[
i
];
}