add ISafeSerializationData
[mcs.git] / tests / test-var-07.cs
blob42ef8e92e1ea4c147524f84413f36e6058c00b87
3 // Tests `var' keyword contextual parsing
5 public class Test : var
7 static void var ()
11 public static int Main ()
13 var i = null;
14 var v = new var ();
16 if (v.GetType () != typeof (var))
17 return 1;
19 return 0;
23 public class var