[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git] / mcs / errors / cs0146-4.cs
blob2e52d9c4ddf199e8a626905773903b998131c21f
1 // CS0146: Circular base class dependency involving `Baz' and `Foo.Bar'
2 // Line: 5
4 class Foo : Baz {
5 public class Bar {}
7 class Baz : Foo.Bar {}