[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-525.cs
1 using System;
2
3 class A
4 {
5         static void MA<T> (string s)
6         {
7         }
8
9         static void F ()
10         {
11         }
12
13         public class C
14         {
15                 Func<int> MA;
16                 int F;
17                 
18                 void Foo ()
19                 {
20                         F ();
21                         MA<int> ("");
22                 }
23                 
24                 public static void Main ()
25                 {
26                         new C ().Foo ();
27                 }
28         }
29 }