[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0714.cs
1 // CS0714: Static class `StaticClass' cannot implement interfaces
2 // Line: 4
3
4 static class StaticClass: System.IComparable {
5 }