2009-01-14 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mcs / errors / gcs0818.cs
1 // CS0818: An implicitly typed local variable declarator must include an initializer
2 // Line: 9
3
4
5 public class Test
6 {
7         static void Main ()
8         {
9                 var v;
10         }
11 }
12