[mcs] C#7 out variable declaration
[mono.git] / mcs / errors / cs1059.cs
1 // CS1059: The operand of an increment or decrement operator must be a variable, property or indexer
2 // Line: 9
3
4 static class C
5 {
6         static void Foo()
7         {
8                 const int uu = 1;
9                 uu++;
10         }
11 }