[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0306.cs
1 // CS0306: The type `char*' may not be used as a type argument
2 // Line: 9
3 // Compiler options: -unsafe
4
5 class F<U> {}
6 unsafe class O {
7         F<char *> f;
8         static void Main () {}
9 }