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

cs0052-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4446d4d2e3762dc2e4ee65b932eec1d94853d6f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0052.cs: Inconsistent accessibility: field type 'C' is less accessible than field 'PublicClass.member'
// Line: 8

class C
{
}

public class PublicClass
{
	public const C member = null;
}