summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0023-13.cs
blob: cd39fd50b47b1ae6e9f54cddde2a1e471b2ca752 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0023: The `++' operator cannot be applied to operand of type `X'
// Line: 9

class X {
	static void Main ()
	{
		X x = new X();

		x++;
	}
}