blob: 25bb826a0714e4f73dc9bff5e6f1c143bae11758 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// CS0128: A local variable named `res' is already defined in this scope
// Line: 13
class C
{
static void Foo (int arg)
{
switch (arg) {
case 1:
int res = 1;
break;
case 2:
int res = 2;
break;
}
}
}
|