summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0501-2.cs
blob: b8726ae56dd9f6f079858009c82d49addea16bee (plain)
1
2
3
4
5
6
7
// CS0501: `Test.this[string].get' must have a body because it is not marked abstract, extern, or partial
// Line: 6

public abstract class Test
{
	public string this [string key] { get; set; }
}