[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0539.cs
1 // CS0539: `A.B' in explicit interface declaration is not a member of interface
2 // Line:
3
4 interface A {
5 }
6
7 class X : A {
8         void A.B () {}
9         static void Main () {}
10 }