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: 7227a9e557871ac7cb465cf775f143c19bb14be1 (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;
}