Files
kotlin-fork/compiler/testData/diagnostics/tests/override/kt12467.fir.kt
T

15 lines
134 B
Kotlin
Vendored

interface A {
fun test() {
}
}
interface B : A {
override fun test()
}
interface C : A
interface D : C, B
class K : D