edit: $/Dev10/feature/vs_langs01/Merlin/Main/Languages/Ruby/IronRuby.Tests/Runtime/ConstantTests.cs;C420856
File: ConstantTests.cs
===================================================================
--- $/Dev10/feature/vs_langs01/Merlin/Main/Languages/Ruby/IronRuby.Tests/Runtime/ConstantTests.cs;C420856  (server)    6/4/2008 1:18 PM
+++ Shelved Change: $/Dev10/feature/vs_langs01/Merlin/Main/Languages/Ruby/IronRuby.Tests/Runtime/ConstantTests.cs;GlobalScope
@@ -271,7 +271,17 @@
         /// Global constants defined in loaded code are defined on the anonymous module created by the load.
         /// </summary>
         public void LoadAndGlobalConstants() {
+            // TODO:
+        }
 
+        /// <summary>
+        /// Global constants are visible in Runtime.Globals.
+        /// </summary>
+        public void GlobalConstantsInterop() {
+            CompilerTest("C = 1");
+            object value;
+            Runtime.Globals.TryGetVariable("C", out value);
+            AssertEquals(value, 1);
         }
     }
 }
===================================================================
edit: $/Dev10/feature/vs_langs01/Merlin/Main/Languages/Ruby/Ruby/Runtime/RubyContext.cs;C457445
File: RubyContext.cs
===================================================================
--- $/Dev10/feature/vs_langs01/Merlin/Main/Languages/Ruby/Ruby/Runtime/RubyContext.cs;C457445  (server)    6/4/2008 1:29 PM
+++ Shelved Change: $/Dev10/feature/vs_langs01/Merlin/Main/Languages/Ruby/Ruby/Runtime/RubyContext.cs;GlobalScope
@@ -104,7 +104,7 @@
 
         // TODO: remove
         private void InitializeExecutionContext() {
-            _executionContext = new RubyExecutionContext(this, new Scope(DomainManager.Globals, new SymbolDictionary()));
+            _executionContext = new RubyExecutionContext(this, DomainManager.Globals);
         }
 
         public override LambdaExpression ParseSourceCode(CompilerContext/*!*/ context) {
===================================================================
