[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0157-6.cs
bloba4db32017fbb719cebf6557d17dea29fd24dd69b
1 // CS0157: Control cannot leave the body of a finally clause
2 // Line: 10
4 class Foo {
5 static void Main () { int i; foo (out i); }
6 static void foo (out int i)
8 try {}
9 finally {
10 return;