2010-03-12 Jb Evain <jbevain@novell.com>
[mono.git] / mcs / errors / cs0146-3.cs
1 // cs0146-3.cs: Circular base class dependency involving `Foo.Bar' and `Foo'
2 // Line: 5
3
4 class Foo : Foo.Bar {
5         public class Bar {}
6 }