[mcs] C#7 tuples var deconstruct
[mono.git] / mcs / errors / cs0128-5.cs
1 // CS0128: A local variable named `xx' is already defined in this scope
2 // Line: 9
3
4 class X
5 {
6         public static void Main ()
7         {
8                 short xx;
9                 var (xx, yy) = (1, 'g');
10         }
11 }