Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0246-16.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 : B
5 {
6         public class B
7         { }
8 }