2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0833.cs
blobe678ab45e5362f5f0305f75aa06de05fc8adea5f
1 // CS0833: `Value': An anonymous type cannot have multiple properties with the same name
2 // Line: 9
5 public class Test
7 static void Main ()
9 var v1 = new { Value = 1, Value = 0 };