Merge pull request #3769 from evincarofautumn/fix-verify-before-allocs
[mono.git] / mcs / errors / cs0540.cs
1 // CS0540: `B.A.B()': containing type does not implement interface `A'
2 // Line:
3
4 interface A {
5 }
6
7 class B {
8         void A.B () {}
9
10         static void Main () {}
11 }