Facilitate the merge
[mono.git] / mcs / errors / cs1059-2.cs
1 // CS1059: The operand of an increment or decrement operator must be a variable, property or indexer\r
2 // Line: 8\r
3 \r
4 using System;\r
5 \r
6 public class Test {\r
7         void Main () {\r
8                 Console.WriteLine (++0);\r
9         }\r
10 }\r