2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0826-4.cs
blobf9461d02e41c68a37f2e8e2b0ab649aecf7eb054
1 // CS0826: The type of an implicitly typed array cannot be inferred from the initializer. Try specifying array type explicitly
2 // Line: 9
5 public class Test
7 static void Main ()
9 var e = new[,,,] { 1, 2 };