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

public class A
{
	public int X { get; }
}

public class B : A
{
	public B ()
	{
		base.X = 1;
	}
}