blob: 795e3ef9c54218675e9457fa3e18b4ee2936f37b [file]
// FIR_IDENTICAL
interface A {
fun test() {
}
}
interface B : A {
override fun test()
}
interface C : A
interface D : C, B
<!ABSTRACT_MEMBER_NOT_IMPLEMENTED!>class K<!> : D