[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0060-3.cs
1 // CS0060: Inconsistent accessibility: base class `A.B.Base' is less accessible than class `A.B.Derived'
2 // Line: 9
3
4 internal class A
5 {
6         protected class B
7         {
8                 protected class Base {}
9                 public class Derived : Base { }
10         }
11 }