[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0157.cs
1 // CS0157: Control cannot leave the body of a finally clause
2 // Line: 9
3
4 class X {
5         void A ()
6         {
7                 try {
8                 } finally {
9                         return;
10                 }
11         }
12 }