Merge pull request #4845 from lambdageek/dev-coop-delegates
[mono.git] / mcs / errors / cs0122-11.cs
1 // CS0122: `Y.Y(string)' is inaccessible due to its protection level
2 // Line: 12
3
4 using System;
5
6 public class Y {
7         private Y(String test) {
8         }
9 }
10
11 class T : Y {
12         public T(String test, String test1) : base(test) {
13         }
14         static void Main () {}
15 }