mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
13 lines
80 B
D
13 lines
80 B
D
module bug11;
|
|
|
|
struct S
|
|
{
|
|
int[4] arr;
|
|
}
|
|
|
|
S s=S([1,2,3,4]);
|
|
|
|
void main()
|
|
{
|
|
}
|