mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
18 lines
108 B
D
18 lines
108 B
D
module structs3;
|
|
|
|
struct S
|
|
{
|
|
float l;
|
|
char c;
|
|
}
|
|
|
|
struct T
|
|
{
|
|
S s;
|
|
long l;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
}
|