Switch to compiler-tester
[mono.git] / mcs / errors / cs0122-5.cs
1 // cs0122-5.cs: `Test.Foo.Bar' is inaccessible due to its protection level
2
3 public class Test
4 {
5         public class Foo
6         {
7                 private class Bar {}
8         }
9         
10         private class Bar : Foo.Bar
11         {
12         }
13
14         public static void Main () {}
15 }
16