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

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

using System;
using X;

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