summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0828-4.cs
blob: a10fcfc2340a451fd4554a43e2ac8a1c1e24d195 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0828: An anonymous type property `Value' cannot be initialized with `anonymous method'
// Line: 8

public class Test
{
	static void Main ()
	{
		var v = new { Value = i => 1 };
	}
}