summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0146-4.cs
blob: 2e52d9c4ddf199e8a626905773903b998131c21f (plain)
1
2
3
4
5
6
7
// CS0146: Circular base class dependency involving `Baz' and `Foo.Bar'
// Line: 5

class Foo : Baz {
	public class Bar {}
}
class Baz : Foo.Bar {}