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