2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0828.cs
bloba555560974a776c06347efb4623296b2400a8f44
1 // CS0828: An anonymous type property `Value' cannot be initialized with `null'
2 // Line: 9
5 public class Test
7 static void Main ()
9 int A = 9;
10 var v1 = new { A, Value = null };