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