2005-06-29 Jonathan Chambers <jonathan.chambers@ansys.com>
[mcs.git] / errors / cs0131-2.cs
blob616bfbb5c5beac4218d51c82c0c9f20fe1e09284
1 // cs0131-2.cs: The left-hand side of an assignment or mutating operation must be a variable, property or indexer
2 // Line: 10
3 using System;
5 class X
7 static void Main ()
9 int a = 7;
10 +a = 9;