[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-151.cs
1 class Test<T> where T: struct{
2    public Test(){
3       T s = new T();
4    }
5 }
6
7 class X
8 {
9         public static int Main ()
10         {
11                 new Test<bool> ();
12                 return 0;
13         }
14 }
15