a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
15 lines
198 B
C#
15 lines
198 B
C#
// CS0139: No enclosing loop out of which to break or continue
|
|
// Line: 9
|
|
|
|
class Foo {
|
|
static void Main ()
|
|
{
|
|
try {
|
|
} catch {
|
|
break;
|
|
} finally {
|
|
throw new System.Exception ();
|
|
}
|
|
}
|
|
}
|