summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0426.cs
blob: 8a31f8f35b85490a26164f0d01889a2fbfe22484 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0426: The nested type `B' does not exist in the type `A'
// Line: 12

class A
{
}

class Test
{
   public static void Main()
   {
      A.B a;
   }
}