summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0826-6.cs
blob: 16c50b2caa81f749cff9be8ea27470b889365236 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0826: The type of an implicitly typed array cannot be inferred from the initializer. Try specifying array type explicitly
// Line: 8

public class Test
{
	static void Main ()
	{
		var e = new[] { 1, "a" };
	}
}