mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
8 lines
99 B
D
8 lines
99 B
D
|
|
static foreach(i; 1 .. 5)
|
|
void foo(float[i] arr)
|
|
{
|
|
() {
|
|
float x = arr[0];
|
|
} ();
|
|
}
|