dmd/compiler/test/compilable/test18026.d

12 lines
152 B
D

// https://issues.dlang.org/show_bug.cgi?id=18026
bool f(T)(T x)
{
return false;
}
static foreach(i; 0..60000)
{
static if(f(i))
{
}
}