// "Implement members" "true" // WITH_RUNTIME // DISABLE-ERRORS interface A { fun foo() {} fun bar() {} } open class B { open fun foo() {} open fun bar() {} } class C : A, B()