Merge branch 'master' of github.com:mono/mono
[mono.git] / mcs / errors / cs0246-22.cs
1 // CS0246: The type or namespace name `var' could not be found. Are you missing a using directive or an assembly reference?
2 // Line: 8
3
4 class C
5 {
6         public static void Main ()
7         {
8                 var[] v = new int[0];
9         }
10 }