[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0107.cs
1 // CS0107: More than one protection modifier specified
2 // Line: 4
3 class X {
4         public private class X2 {
5         }
6 }