summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0833.cs
blob: e678ab45e5362f5f0305f75aa06de05fc8adea5f (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0833: `Value': An anonymous type cannot have multiple properties with the same name
// Line: 9


public class Test
{
	static void Main ()
	{
		var v1 = new { Value = 1, Value = 0 };
	}
}