summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0107.cs
blob: b4abc495844e7528f6e478904ae712ba0a39232e (plain)
1
2
3
4
5
6
// CS0107: More than one protection modifier specified
// Line: 4
class X {
	public private class X2 {
	}
}