11 lines
159 B
Kotlin
Vendored
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 |