add ISafeSerializationData
[mcs.git] / tests / gtest-anontype-07.cs
blob1470ecb18962c1546286967ff3b6ba3a6d6af38c
3 using System;
4 using System.Collections;
6 public class Test
8 static int Main ()
10 var v1 = new { };
11 var v2 = new { };
13 if (v1.GetType () != v2.GetType ())
14 return 1;
16 if (!v1.Equals (v2))
17 return 2;
19 Console.WriteLine (v1);
20 Console.WriteLine (v2);
21 return 0;