[svn r11] added another struct sample

This commit is contained in:
Tomas Lindquist Olsen
2007-09-26 19:17:54 +02:00
parent 329ad7747c
commit 2fe995a0c7

17
test/structs3.d Normal file
View File

@@ -0,0 +1,17 @@
module structs3;
struct S
{
float l;
char c;
}
struct T
{
S s;
long l;
}
void main()
{
}