mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
16 lines
193 B
D
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) {}
|