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


public class Test
{
	static void Main ()
	{
		var e = new[] { delegate {} };
	}
}