Merge remote branch 'upstream/master'
[mono.git] / mcs / errors / cs0826-3.cs
1 // CS0826: The type of an implicitly typed array cannot be inferred from the initializer. Try specifying array type explicitly
2 // Line: 13
3
4
5 public class Test
6 {
7         static void TestMethod ()
8         {
9         }
10         
11         static void Main ()
12         {
13                 var e = new[] { TestMethod () };
14         }
15 }
16