[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0029-18.cs
1 // CS0029: Cannot implicitly convert type `T' to `int*'
2 // Line: 8
3 // Compiler options: -unsafe
4
5 class T
6 {
7         static unsafe void Main ()
8         {
9                 int* a = default (T);
10         }
11 }