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

cs0122-11.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6f307f164c89f8c6c914659fc105ea86245db536 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS0122: `Y.Y(string)' is inaccessible due to its protection level
// Line: 12

using System;

public class Y {
	private Y(String test) {
	}
}

class T : Y {
	public T(String test, String test1) : base(test) {
	}
	static void Main () {}
}