(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
ice9013.d
/*
TEST_OUTPUT:
---
fail_compilation/ice9013.d(9): Error: undefined identifier `missing`
---
*/
void main()
{
    foreach (i; 0 .. missing)
        int[] foo = cast(int[])[i];
}