comparison test/classes5.d @ 6:35d93ce68cf4 trunk

[svn r10] Updated for LLVM rev. 20070913 Applied fixes from wilsonk on the forum Some tweaks to work with gc 7.0 Fixed aggregate members of aggregates Fixed cyclic/recursive class declarations Other minor tweaks
author lindquist
date Wed, 26 Sep 2007 19:05:18 +0200
parents
children 5e69b77a5c51
comparison
equal deleted inserted replaced
5:3d60e549b0c2 6:35d93ce68cf4
1 module classes5;
2
3 struct S
4 {
5 long l;
6 }
7
8 class C
9 {
10 C c;
11 S s;
12 }
13
14 void main()
15 {
16 //C c = new C;
17 }