RaiseOnDeserializingEvent still not supported in TARGET_JVM profile
[mono.git] / mcs / errors / cs0131-4.cs
1 // CS0131: The left-hand side of an assignment must be a variable, a property or an 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 }