[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-anon-173.cs
1 using System;
2
3 class MainClass
4 {
5         public static void Main ()
6         {
7                 SomeMethod (() => {
8                         Func<int,int> f = b => b;
9                 retry:
10                         goto retry;
11                 });
12         }
13
14         static void SomeMethod (Action a)
15         {
16         }
17 }