Remove redundant file from Java build
[mono.git] / mcs / errors / gcs0833.cs
1 // CS0833: `Value': An anonymous type cannot have multiple properties with the same name
2 // Line: 9
3 // Compiler options: -langversion:linq
4
5 public class Test
6 {
7         static void Main ()
8         {
9                 var v1 = new { Value = 1, Value = 0 };
10         }
11 }