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

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