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