mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
11 lines
178 B
D
11 lines
178 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice9013.d(9): Error: undefined identifier `missing`
|
|
---
|
|
*/
|
|
void main()
|
|
{
|
|
foreach (i; 0 .. missing)
|
|
int[] foo = cast(int[])[i];
|
|
}
|