summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0122-10.cs
blob: 6dd0519cca59f86411bd72b48ec0afe5384437f8 (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 () {}
}