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

class C
{
	public static int S { get; }

	public C ()
	{
		S = 3;
	}
}