2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0023-13.cs
blobcd39fd50b47b1ae6e9f54cddde2a1e471b2ca752
1 // CS0023: The `++' operator cannot be applied to operand of type `X'
2 // Line: 9
4 class X {
5 static void Main ()
7 X x = new X();
9 x++;