add ISafeSerializationData
[mcs.git] / tests / gtest-362.cs
blob63ea5148fc3fde9b611f8b3ff8d5b7b37b499a3f
1 class C
3 static void Assert<T> (T a)
7 static void Assert<T> (T a, T b)
11 public static int Main ()
13 Assert (new object [,] { { 1, 2 }, { "x", "z" } });
14 Assert (new object (), "a");
16 return 0;