Merge pull request #3997 from lateralusX/jlorenss/win-api-family-support-safearray
[mono.git] / mcs / errors / cs0157-6.cs
1 // CS0157: Control cannot leave the body of a finally clause
2 // Line: 10
3
4 class Foo {
5         static void Main () { int i; foo (out i); }
6         static void foo (out int i)
7         {
8                 try {}
9                 finally {
10                         return;
11                 }
12         }
13 }