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: 059c6690be462845df8c179b1f8e1ddbd99f1e81 (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, property or indexer
// Line: 10
using System;

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