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