Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0131-2.cs
1 // CS0131: The left-hand side of an assignment must be a variable, a property or an indexer
2 // Line: 10
3 using System;
4
5 class X
6 {
7         static void Main ()
8         {
9                 int a = 7;
10                 +a = 9;
11         }
12 }