IronRuby.Tests.Tests.SingletonCaching2B C# (CSharp) Method

SingletonCaching2B() public method

Object.
public SingletonCaching2B ( ) : void
return void
        public void SingletonCaching2B() {
            AssertOutput(() => CompilerTest(@"
foo = Object.new
bar = Object.new
def foo.to_s; 'ok'; end
puts bar.to_s
puts foo.to_s
"), @"
#<Object:*>
ok
", OutputFlags.Match);
        }
Tests