2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0122-6.cs
bloba0646f126342fa3c9dae02383eeb223719482651
1 // cs0122-6.cs: `Test.Foo.IBar' is inaccessible due to its protection level
2 // Line: 11
4 public class Test
6 public class Foo
8 protected interface IBar {}
11 private class Bar : Foo.IBar
15 public static void Main () {}