quote only work on lambda on net_4_0
[mcs.git] / errors / cs0157-6.cs
blobed5f28383576f85df61d596cf869c0ca75a496a2
1 // cs0157-6.cs: 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;