Merge pull request #3766 from BrzVlad/feature-default-conc
[mono.git] / mcs / errors / cs0833.cs
1 // CS0833: `Value': An anonymous type cannot have multiple properties with the same name
2 // Line: 9
3
4
5 public class Test
6 {
7         static void Main ()
8         {
9                 var v1 = new { Value = 1, Value = 0 };
10         }
11 }