2007-10-17 Geoff Norton <gnorton@novell.com>
[mono.git] / mcs / errors / gcs0103-2.cs
1 // CS0103: The name `Value' does not exist in the current context
2 // Line: 9
3 // Compiler options: -langversion:linq
4
5 public class Test
6 {
7         static void Main ()
8         {
9                 var v = new { Field = Value };
10         }
11 }