changeset 1118:dde9dbae052a

Make this test a bit more meaningful
author Frits van Bommel <fvbommel wxs.nl>
date Sat, 14 Mar 2009 22:29:31 +0100
parents 4c20fcc4252b
children 2cd6199488f6
files tests/mini/interface5.d
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/tests/mini/interface5.d	Sat Mar 14 22:15:31 2009 +0100
+++ b/tests/mini/interface5.d	Sat Mar 14 22:29:31 2009 +0100
@@ -23,7 +23,7 @@
     c.func();
     {
         I i = c;
-        c.func();
+        i.func();
 
         C c2 = cast(C)i;
         c2.func();