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

12 lines
138 B
Kotlin
Vendored

interface A {
fun test(): String = "A"
}
interface B : A {
override fun test(): Unit = "B"
}
open class C : A
class D : C(), B