[svn r13] * Updated for LLVM 2.1

* Class v-tables are now typesafe
* Code cleanups
This commit is contained in:
Tomas Lindquist Olsen
2007-10-01 21:19:53 +02:00
parent 1609cb80d4
commit e95466cb64
12 changed files with 222 additions and 249 deletions

15
test/classes6.d Normal file
View File

@@ -0,0 +1,15 @@
module classes6;
class C
{
void f()
{
printf("hello world\n");
}
}
void main()
{
scope c = new C;
c.f();
}

9
test/funcs2.d Normal file
View File

@@ -0,0 +1,9 @@
module funcs2;
void func()
{
}
void main()
{
}