[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / errors / cs0246-28.cs
1 // CS0246: The type or namespace name `B' could not be found. Are you missing an assembly reference?
2 // Line: 4
3
4 class A : C<B>
5 {
6   class B {}
7 }
8  
9 interface C<X> {}