Merge pull request #5567 from kumpera/fix_59334
[mono.git] / mcs / errors / cs0841-4.cs
1 // CS0841: A local variable `v' cannot be used before it is declared
2 // Line: 9
3
4
5 public class Test
6 {
7         static void Main ()
8         {
9                 var v = ++v;
10         }
11 }
12