[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0023-13.cs
1 // CS0023: The `++' operator cannot be applied to operand of type `X'
2 // Line: 9
3
4 class X {
5         static void Main ()
6         {
7                 X x = new X();
8
9                 x++;
10         }
11 }