11 lines
163 B
C#
Raw Normal View History

// CS0539: `A.B' in explicit interface declaration is not a member of interface
// Line:
interface A {
}
class X : A {
void A.B () {}
static void Main () {}
}