a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
25 lines
242 B
C#
25 lines
242 B
C#
using System;
|
|
|
|
class X
|
|
{
|
|
public static void Main ()
|
|
{
|
|
int x = 1;
|
|
switch (x) {
|
|
case 1:
|
|
try {
|
|
goto case 6;
|
|
} catch {
|
|
}
|
|
break;
|
|
case 6:
|
|
try {
|
|
goto default;
|
|
} catch {
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
} |