diff test/classes6.d @ 11:d3ee9efe20e2 trunk

[svn r15] * Fixed a bunch problems with virtual calls. Seems I did some rather poor testing. * Now 50/51 tests compile. * Added a simple runalltests.d scripts that should be run with 'gdmd -run runalltests.d' - LLVMDC will not compile it yet.
author lindquist
date Tue, 02 Oct 2007 05:10:18 +0200
parents dafae18f9c08
children d9d5d59873d8
line wrap: on
line diff
--- a/test/classes6.d	Mon Oct 01 23:32:29 2007 +0200
+++ b/test/classes6.d	Tue Oct 02 05:10:18 2007 +0200
@@ -4,12 +4,34 @@
 {
     void f()
     {
-        printf("hello world\n");
+        printf("world\n");
+    }
+}
+
+class D : C
+{
+    void f()
+    {
+        printf("moon\n");
     }
 }
 
+
+extern(C)
+{
+    void srand(uint seed);
+    int rand();
+}
+
+import llvm.intrinsic;
+
 void main()
 {
-    scope c = new C;
+    C c;
+    srand(readcyclecounter());
+    if (rand() % 2)
+        c = new C;
+    else
+        c = new D;
     c.f();
 }