[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0559.cs
1 // CS0559: The parameter type for ++ or -- operator must be the containing type
2 // Line: 5
3
4 class SampleClass {
5         public static SampleClass operator ++ (int value) {
6                 return new SampleClass();
7         }
8 }