Files
kotlin-fork/compiler/testData/diagnostics/tests/override/kt4763property.fir.kt
T
2021-03-24 16:07:25 +03:00

12 lines
159 B
Kotlin
Vendored

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