quote only work on lambda on net_4_0
[mcs.git] / errors / gcs0828-2.cs
blob3c8db7735b0397d0f718d9b5008ccf7aa325fed0
1 // CS0828: An anonymous type property `Value' cannot be initialized with `int*'
2 // Line: 9
3 // Compiler options: -unsafe
5 public unsafe class Test
7 static int* Error ()
9 return (int*)0;
12 static void Main ()
14 var v = new { Value = Error () };