Merge all static runtime libs into libmono-static.
[mono.git] / mcs / errors / cs0826-11.cs
1 // CS0826: The type of an implicitly typed array cannot be inferred from the initializer. Try specifying array type explicitly
2 // Line: 8
3
4 class XX
5 {
6         public static void Main ()
7         {
8                 var m = new [] { (1, Main) };
9         }
10 }