Remove code moved to shared partition
[mono-project.git] / mcs / errors / cs0122-33.cs
blob947bc19707f20a3fabff156ddb0ebdc454e20f7f
1 // CS0122: `M.Test<S.P>(I<S.P>)' is inaccessible due to its protection level
2 // Line: 27
4 interface I<T>
8 struct S
10 class P
14 public class C : I<P>
19 class M
21 static void Test<T>(I<T> iface)
25 static void Test()
27 Test (new S.C ());