* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0426.cs
1 // cs0426.cs: The nested type `B' does not exist in the type `A'
2 // Line: 12
3
4 class A
5 {
6 }
7
8 class Test
9 {
10    public static void Main()
11    {
12       A.B a;
13    }
14 }