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: ab41e853ef84a75ecec0e3d8447cc6c2e98a2099 (plain)
1
2
3
4
5
6
7
8
9
// CS0131: The left-hand side of an assignment must be a variable, a property or an indexer
// Line: 7

class X {
	void A ()
	{
		5 = 4;
	}
}