Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / errors / cs0539.cs
1 // CS0539: `A.B' in explicit interface declaration is not a member of interface
2 // Line:
3
4 interface A {
5 }
6
7 class X : A {
8         void A.B () {}
9         static void Main () {}
10 }