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

class X
{
	public int Mine { get; set {} }
}