Merge pull request #3591 from directhex/mono_libdir_fallback
[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 }