[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0826-6.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 public class Test
5 {
6         static void Main ()
7         {
8                 var e = new[] { 1, "a" };
9         }
10 }
11