fix run-test
[mcs.git] / errors / cs1059.cs
blobb598a8d1b8ea69ca00dfccc1a045fe8b7fc1e931
1 // CS1059: The operand of an increment or decrement operator must be a variable, property or indexer
2 // Line: 9
4 static class C
6 static void Foo()
8 const int uu = 1;
9 uu++;