2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1059-2.cs
blob979088d14bb5756a829696c6dce58fb5d2a27b48
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);