Merge pull request #3565 from vargaz/no-free-imt-thunks
[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