w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs0122-5.cs
blobcba207d924693da937b1826f16bb7109ddadfd57
1 // CS0122: `Test.Foo.Bar' is inaccessible due to its protection level
2 // Line: 11
4 public class Test
6 public class Foo
8 private class Bar {}
11 private class Bar : Foo.Bar
15 public static void Main () {}