Files
kotlin-fork/compiler/testData/diagnostics/tests/duplicateJvmSignature/accidentalOverrides/delegatedFunctionOverriddenByProperty.fir.kt
T

10 lines
97 B
Kotlin
Vendored

interface B {
fun getX() = 1
}
interface D {
val x: Int
}
class C(d: D) : D by d, B {
}