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