mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
16 lines
269 B
D
16 lines
269 B
D
// Issue 23676 - Static foreach hangs compilation for some time
|
|
// https://issues.dlang.org/show_bug.cgi?id=23676
|
|
|
|
void f()
|
|
{
|
|
int i;
|
|
void g(int I)()
|
|
{
|
|
static foreach(j; 0..11)
|
|
{
|
|
i++;
|
|
g!j();
|
|
}
|
|
}
|
|
g!0;
|
|
}
|