summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1059.cs
blob: b598a8d1b8ea69ca00dfccc1a045fe8b7fc1e931 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1059: The operand of an increment or decrement operator must be a variable, property or indexer
// Line: 9

static class C
{
	static void Foo()
	{
		const int uu = 1;
		uu++;
	}
}