Merge pull request #4202 from marek-safar/compression
[mono-project.git] / mcs / errors / cs1059-2.cs
blob800f23b28f65fabeab564fd6d0ee4f32dfc36d84
1 // CS1059: The operand of an increment or decrement operator must be a variable, property or indexer
2 // Line: 8
4 using System;
6 public class Test {
7 void Main () {
8 Console.WriteLine (++0);