mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 19:03:13 +01:00
24 lines
160 B
D
24 lines
160 B
D
module structs5;
|
|
|
|
void main()
|
|
{
|
|
{S s = S();}
|
|
{T t = T(1);}
|
|
{U u = U();}
|
|
}
|
|
|
|
struct S
|
|
{
|
|
}
|
|
|
|
struct T
|
|
{
|
|
int i;
|
|
}
|
|
|
|
struct U
|
|
{
|
|
S s;
|
|
long l;
|
|
}
|