[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0540.cs
blobc415d0239de9d756851ee569dadeccab8d0a885d
1 // CS0540: `B.A.B()': containing type does not implement interface `A'
2 // Line:
4 interface A {
7 class B {
8 void A.B () {}
10 static void Main () {}