[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0263.cs
1 // CS0263: Partial declarations of `Foo' must not specify different base classes
2 // Line: 12
3 public class Base
4 { }
5
6 public class OtherBase
7 { }
8
9 public partial class Foo : Base
10 { }
11
12 public partial class Foo : OtherBase
13 { }
14
15 class X
16 {
17         static void Main ()
18         { }
19 }