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