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

cs8052.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3f6a219653a206e9e9dacc343e5759284b624e1 (plain)
1
2
3
4
5
6
7
// CS8052: `I.P': Properties inside interfaces cannot have initializers
// Line: 6

interface I
{
	int P { get; } = 4;
}