blob: e47539a97a15a27469f173dbee516914f91396aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// CS0159: The label `a:' could not be found within the scope of the goto statement
// Line: 9
class Foo {
static void Main ()
{
int i = 9;
goto a;
do {
a:
throw new System.Exception ("huh?");
} while (i != 9);
}
}
|