14 lines
180 B
C#
14 lines
180 B
C#
// 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;
|
|
}
|
|
}
|
|
}
|
|
|