summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0246-16.cs
blob: 9512a6e72a67162a72038227d1ae238876094ffe (plain)
1
2
3
4
5
6
7
8
// CS0246: The type or namespace name `B' could not be found. Are you missing an assembly reference?
// Line: 4

class A : B
{
        public class B
        { }
}