[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0403.cs
1 // CS0403: Cannot convert null to the type parameter `T' because it could be a value type. Consider using `default (T)' instead
2 // Line: 7
3 class Test<T>
4 {
5         public T Null ()
6         {
7                 return null;
8         }
9 }
10
11 class X
12 {
13         static void Main ()
14         { }
15 }