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

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