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];
}