quote only work on lambda on net_4_0
[mcs.git] / errors / cs0131-2.cs
blob67ebaaaf13d471470dd4229a5d98a03594b992b4
1 // CS0131: The left-hand side of an assignment must be a variable, a property or an indexer
2 // Line: 10
3 using System;
5 class X
7 static void Main ()
9 int a = 7;
10 +a = 9;