* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0187.cs
1 // cs0187.cs: No such operator '++' defined for type 'X'
2 // Line: 9
3
4 class X {
5         static void Main ()
6         {
7                 X x = new X();
8
9                 x++;
10         }
11 }