Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gcs0501.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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 {} }
}