2008-03-18 Geoff Norton <gnorton@novell.com>
[mono.git] / mcs / errors / gcs0246-8.cs
1 // gcs0246-8.cs: The type or namespace name `B' could not be found. Are you missing a using directive or an assembly reference?
2 // Line: 4
3
4 class A : C<B>
5 {
6   class B {}
7 }
8  
9 interface C<X> {}