a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
29 lines
241 B
C#
29 lines
241 B
C#
using System;
|
|
|
|
class Program
|
|
{
|
|
static int Main ()
|
|
{
|
|
int foo = 9;
|
|
|
|
switch (foo) {
|
|
case 1:
|
|
gotoTarget:
|
|
{
|
|
return 0;
|
|
}
|
|
default:
|
|
{
|
|
if (foo != 0) {
|
|
goto gotoTarget;
|
|
}
|
|
|
|
break;
|
|
}
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
}
|
|
|