12 lines
151 B
C#
Raw Normal View History

// CS0540: `B.A.B()': containing type does not implement interface `A'
// Line:
interface A {
}
class B {
void A.B () {}
static void Main () {}
}