Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0426.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
   }
}