[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-556-lib.cs
1 // Compiler options: -t:library
2
3 public class A
4 {
5         public class N<T>
6         {
7                 public static N<T> Method ()
8                 {
9                         return default (N<T>);
10                 }
11         }
12 }