Files
kotlin-fork/compiler/testData/diagnostics/tests/override/kt12467.kt
T
2021-03-24 16:07:25 +03:00

16 lines
189 B
Kotlin
Vendored

// 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