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

cs0107.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 19173a4d666142a782c66dc7a4e4203da60d7b01 (plain)
1
2
3
4
5
6
// cs0107.cs: More than one protection modifier
// Line: 4
class X {
	public private class X2 {
	}
}