[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0128-2.cs
blob25bb826a0714e4f73dc9bff5e6f1c143bae11758
1 // CS0128: A local variable named `res' is already defined in this scope
2 // Line: 13
4 class C
6 static void Foo (int arg)
8 switch (arg) {
9 case 1:
10 int res = 1;
11 break;
12 case 2:
13 int res = 2;
14 break;