New test.
[mono.git] / mcs / errors / cs0246-16.cs
1 // cs0246-16.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 : B
5 {
6         public class B
7         { }
8 }