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