[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs0122-11.cs
blob6f307f164c89f8c6c914659fc105ea86245db536
1 // CS0122: `Y.Y(string)' is inaccessible due to its protection level
2 // Line: 12
4 using System;
6 public class Y {
7 private Y(String test) {
11 class T : Y {
12 public T(String test, String test1) : base(test) {
14 static void Main () {}