From 2fe995a0c7aeca68e89b0a3ad1da2008f85d7d5d Mon Sep 17 00:00:00 2001 From: Tomas Lindquist Olsen Date: Wed, 26 Sep 2007 19:17:54 +0200 Subject: [PATCH] [svn r11] added another struct sample --- test/structs3.d | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 test/structs3.d 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() +{ +}