[xbuild] More tweaks for portable debug mode
[mono-project.git] / mcs / errors / cs0246-28.cs
blob35f15e14f4d8f988e7863b0e55deb2db007c1df1
1 // CS0246: The type or namespace name `B' could not be found. Are you missing an assembly reference?
2 // Line: 4
4 class A : C<B>
6 class B {}
9 interface C<X> {}