[System.Windows.Forms] Disable failing test
[mono-project.git] / mcs / tests / gtest-collectioninit-03.cs
blob2fb0cfe5256a5f149f23799848b24248fd81d035
1 using System.Collections;
3 class X
5 public 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 } };