summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0131-2.cs
blob: 67ebaaaf13d471470dd4229a5d98a03594b992b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0131: The left-hand side of an assignment must be a variable, a property or an indexer
// Line: 10
using System;

class X
{
	static void Main ()
	{
		int a = 7;
		+a = 9;
	}
}