[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
This commit is contained in:
Tomas Lindquist Olsen
2007-09-26 19:05:18 +02:00
parent 5d2e8f1009
commit 329ad7747c
10 changed files with 118 additions and 54 deletions

17
test/classes5.d Normal file
View File

@@ -0,0 +1,17 @@
module classes5;
struct S
{
long l;
}
class C
{
C c;
S s;
}
void main()
{
//C c = new C;
}