Files
ldc/tests/mini/structs6.d

16 lines
96 B
D

module structs6;
struct S
{
float f;
}
void func(S s)
{
}
void main()
{
func(S());
}