[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0122-3.cs
blobdbd72d791ac0c7197b0de255268277d6caa6d2ac
1 // CS0122: `A.B' is inaccessible due to its protection level
2 // Line: 11
4 interface r {
5 A.B aaa ();
8 class A {
9 enum B {
14 class B {
15 static void Main ()
17 A.B x = A.B.D;