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