summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0815-3.cs
blob: 62c0850dccdd9289f5a8251790acc0d84f42981c (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0815: An implicitly typed local variable declaration cannot be initialized with `anonymous method'
// Line: 8

public class Test
{
	static void Main ()
	{
		var l = x => x + 1;
	}
}