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

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

class InternalClass {
}

public class PublicClass {
	public InternalClass member;
}