diff --git a/test/structs3.d b/test/structs3.d new file mode 100644 index 00000000..beb8af8b --- /dev/null +++ b/test/structs3.d @@ -0,0 +1,17 @@ +module structs3; + +struct S +{ + float l; + char c; +} + +struct T +{ + S s; + long l; +} + +void main() +{ +}