* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0122-20.cs
1 // cs0122-20.cs: `A.B' is inaccessible due to its protection level\r
2 // Line: 4\r
3 \r
4 using C = A.B;\r
5 \r
6 class A\r
7 {\r
8         class B {}\r
9 }