mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
14 lines
97 B
D
14 lines
97 B
D
module structs2;
|
|
|
|
struct S
|
|
{
|
|
int i;
|
|
char c;
|
|
S* s;
|
|
char[4] ca;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
}
|