[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0122.cs
blob63831af10ade8cc5f377222c256f4767247f26e8
1 // CS0122: `Y.x()' is inaccessible due to its protection level
2 // Line: 15
3 using System;
5 class Y {
6 void x () {}
10 class X {
11 static int Main ()
13 Y y = new Y ();
15 y.x ();
16 return 0;