a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
25 lines
252 B
C#
25 lines
252 B
C#
using System;
|
|
|
|
public class Test {
|
|
|
|
public static int Main ()
|
|
{
|
|
int a = 2;
|
|
int res = 0;
|
|
switch(a) {
|
|
case 1:
|
|
res += 1;
|
|
label:
|
|
res += 3;
|
|
break;
|
|
case 2:
|
|
res += 2;
|
|
goto label;
|
|
}
|
|
|
|
if (res != 5)
|
|
return 1;
|
|
|
|
return 0;
|
|
}
|
|
} |