2007-10-17 Geoff Norton <gnorton@novell.com>
[mono.git] / mcs / errors / gcs0841.cs
1 // CS0841: The variable `v' cannot be used before it is declared
2 // Line: 9
3 // Compiler options: -langversion:linq
4
5 public class Test
6 {
7         static void Main ()
8         {
9                 var v = ++v;
10         }
11 }
12