avoid using a custom sources file for the net_2_1_raw profile
[mcs.git] / errors / cs0187.cs
blobc4699bf1755e203ff8a954468eae5cef3812accf
1 // cs0187.cs: No such operator '++' defined for type 'X'
2 // Line: 9
4 class X {
5 static void Main ()
7 X x = new X();
9 x++;