[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1722-2.cs
1 // CS1722: `B': Base class `A1' must be specified as first
2 // Line: 9
3 class A1 {
4 }
5
6 interface I {
7 }
8
9 class B : I, A1 {
10         static void Main () {}
11 }