mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
16 lines
96 B
D
16 lines
96 B
D
module structs6;
|
|
|
|
struct S
|
|
{
|
|
float f;
|
|
}
|
|
|
|
void func(S s)
|
|
{
|
|
}
|
|
|
|
void main()
|
|
{
|
|
func(S());
|
|
}
|