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

cs0131.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ef025a2039ad0807a566ec3946c2fe3376132496 (plain)
1
2
3
4
5
6
7
8
// cs0131.cs: left hand side of an assignment must be variable, property access or indexer
// Line:
class X {
	void A ()
	{
		5 = 4;
	}
}