ignores
[mcs.git] / errors / cs0122-10.cs
blobde31f50b1fe9721ee88b688db77503c7af3c237f
1 // cs0122: `X.Y.Y(string)' is inaccessible due to its protection level
2 // Line: 9
3 // Compiler options: -r:CS0122-10-lib.dll
5 using System;
6 using X;
8 class T : Y {
9 public T(String test, String test1) : base(test) {
11 static void Main () {}