[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0539.cs
bloba79859ce3ecae4fb07e7b27dd5ebffa4e26bbe68
1 // CS0539: `A.B' in explicit interface declaration is not a member of interface
2 // Line:
4 interface A {
7 class X : A {
8 void A.B () {}
9 static void Main () {}