summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0200-6.cs
blob: dcfe2d215726f1f47cb976dec1c45d512690c09b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0200: Property or indexer `C.P' cannot be assigned to (it is read-only)
// Line: 10

class C
{
	public int P { get; }

	public void Foo ()
	{
		P = 10;
	}
}