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

12 lines
121 B
Kotlin
Vendored

interface P {
var f: Number
}
open class Q {
val x: Int = 42
}
class R : P, Q()
val s: Q = object : Q(), P {}