mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 19:03:13 +01:00
12 lines
92 B
D
12 lines
92 B
D
module bug18;
|
|
|
|
struct S {
|
|
int[9] i;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
int[9] i;
|
|
auto s = S(i);
|
|
}
|