Revision
2809
Author
lsansonetti@apple.com
Date
2009-10-14 23:37:10 -0700 (Wed, 14 Oct 2009)

Log Message

added one failing test

Modified Paths

Diff

Modified: MacRuby/trunk/test_vm/constant.rb (2808 => 2809)


--- MacRuby/trunk/test_vm/constant.rb	2009-10-15 02:43:28 UTC (rev 2808)
+++ MacRuby/trunk/test_vm/constant.rb	2009-10-15 06:37:10 UTC (rev 2809)
@@ -127,3 +127,13 @@
   end
   Foo.new.hey
 }
+
+assert '42', %{
+  module Foo; end
+  module Foo::Bar
+    FOO=42
+    class X
+      p FOO
+    end
+  end
+}