[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0128-5.cs
blob405537d4331962a07659b6377716d02c76376da6
1 // CS0128: A local variable named `xx' is already defined in this scope
2 // Line: 9
4 class X
6 public static void Main ()
8 short xx;
9 var (xx, yy) = (1, 'g');