summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0131.cs
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;
	}
}