mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
15 lines
122 B
D
15 lines
122 B
D
module structs7;
|
|
|
|
struct S
|
|
{
|
|
int i;
|
|
long l;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
S s = void;
|
|
int i = s.i;
|
|
long l = s.l;
|
|
}
|