**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0122-6.cs
blobc5792c2ba393676ee6da8f944a661eb623f21a02
1 // cs0122: `Foo.IBar' is inaccessible due to its protection level
3 public class Test
5 public class Foo
7 protected interface IBar {}
10 private class Bar : Foo.IBar
14 public static void Main () {}