blob: cfe547eaf390529d755709033b07679b4909b7d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// CS0159: The label `skip:' could not be found within the scope of the goto statement
// Line: 9
class Foo {
static void Main ()
{
try {}
finally {
goto skip;
}
}
}
|