11 lines
163 B
C#
11 lines
163 B
C#
// 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 () {}
|
|
}
|