[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-626.cs
1 //
2 // fixed
3 //
4 using System;
5
6 class X {
7
8         void A ()
9         {
10         }
11                                 
12         public static void Main ()
13         {
14                 int loop = 0;
15                 
16                 goto a;
17         b:
18                 loop++;
19                 return;
20         a:
21                 Console.WriteLine ("Hello");
22                 for (;;){
23                         goto b;
24                 }
25         }
26 }