2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-collectioninit-03.cs
blob52c654cdb430545c94b289fd8f5223f7440e33ac
1 using System.Collections;
3 class X
5 static int Main ()
7 object x = null;
8 R (ref x);
9 return ((Hashtable)x).Count == 1 ? 0 : 1;
12 static void R (ref object o)
14 o = new Hashtable () { { 1, 2 } };