[arm64] Add the full neon regs to the context
[mono.git] / mcs / tests / test-var-07.cs
1
2
3 // Tests `var' keyword contextual parsing
4
5 public class Test : var
6 {
7         static void var ()
8         {
9         }
10         
11         public static int Main ()
12         {
13                 var i = null;
14                 var v = new var ();
15                 
16                 if (v.GetType () != typeof (var))
17                         return 1;
18                 
19                 return 0;       
20         }
21 }
22
23 public class var
24 {
25 }
26