quote only work on lambda on net_4_0
[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 };