2008-02-18 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mcs / errors / gcs0819.cs
1 // CS0819: An implicitly typed local variable declaration cannot include multiple declarators
2 // Line: 9
3
4
5 public class Test
6 {
7         static void Main ()
8         {
9                 var v = "foo", w = "bar";
10         }
11 }