[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0527.cs
1 // CS0527: Type `X' in interface list is not an interface
2 // Line: 6
3 class X {
4 }
5
6 interface A : X {
7 }