// cs0187.cs: No such operator '++' defined for type 'X' // Line: 9 class X { static void Main () { X x = new X(); x++; } }