a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
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;
|
|
}
|
|
}
|
|
}
|
|
|