Files
kotlin-fork/compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/accidentalOverrides/delegatedFunctionOverriddenByProperty_ir.kt
T
2022-10-17 12:46:24 +00:00

11 lines
159 B
Kotlin
Vendored

// IGNORE_FIR
// TARGET_BACKEND: JVM_IR
interface B {
fun getX() = 1
}
interface D {
val x: Int
}
class <!ACCIDENTAL_OVERRIDE!>C(d: D)<!> : D by d, B