a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
14 lines
204 B
C#
14 lines
204 B
C#
// CS0157: Control cannot leave the body of a finally clause
|
|
// Line: 10
|
|
|
|
class Foo {
|
|
static void Main () { int i; foo (out i); }
|
|
static void foo (out int i)
|
|
{
|
|
try {}
|
|
finally {
|
|
return;
|
|
}
|
|
}
|
|
}
|