[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0146.cs
1 // CS0146: Circular base class dependency involving `B' and `A'
2 // Line: 7
3
4 class A : B {
5 }
6
7 class B : A {
8 }