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: 7488d8e73a2fc67d9865af31877ad4765d858518 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs0122: `X.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 () {}
}