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: fd02f7e2c2a690e7c1ca51c3765258cca9027f88 (plain)
1
2
3
4
5
6
// cs0107.cs: More than one protection modifier
// Line: 4
class X {
	public private class X {
	}
}