Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0131-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
	}
}