[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1521-4.cs
1 // CS1521: Invalid base type `C?'
2 // Line: 8
3
4 struct C
5 {
6 }
7
8 class C2: C?
9 {
10 }
11