Revision
2939
Author
lsansonetti@apple.com
Date
2009-11-02 14:12:19 -0800 (Mon, 02 Nov 2009)

Log Message

added a failing test

Modified Paths

Diff

Modified: MacRuby/trunk/test_vm/dispatch.rb (2938 => 2939)


--- MacRuby/trunk/test_vm/dispatch.rb	2009-11-02 04:44:41 UTC (rev 2938)
+++ MacRuby/trunk/test_vm/dispatch.rb	2009-11-02 22:12:19 UTC (rev 2939)
@@ -443,3 +443,13 @@
     p :ok
   end
 }
+
+assert '42', %{
+  class C1
+    def foo(x); p x; end
+  end
+  class C2 < C1
+    def foo(x=42); super; end
+  end
+  C2.new.foo
+}