2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / errors / cs0131-4.cs
bloba1e21bf37d73fcbe46b3916e4d93b7140b8ef59d
1 // CS0131: The left-hand side of an assignment must be a variable, a property or an indexer
2 // Line: 8
4 using System;
6 public class Test {
7 void Main () {
8 Console.WriteLine (++0);