dmd/compiler/test/fail_compilation/fail264.d
2022-07-09 18:53:07 +02:00

16 lines
193 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail264.d(10): Error: undefined identifier `undef`
---
*/
void main()
{
foreach (element; undef)
{
fn(element);
}
}
void fn(int i) {}