[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0122-5.cs
1 // CS0122: `Test.Foo.Bar' is inaccessible due to its protection level
2 // Line: 11
3
4 public class Test
5 {
6         public class Foo
7         {
8                 private class Bar {}
9         }
10         
11         private class Bar : Foo.Bar
12         {
13         }
14
15         public static void Main () {}
16 }
17