Files
kotlin-fork/compiler/testData/ir/irText/classes/smartCastInValInitialization.kt.txt
T
2024-02-16 10:19:38 +00:00

27 lines
339 B
Kotlin
Vendored

open class MessageBusImpl {
val parentBus: Any?
get
init {
<this> as RootBus /*~> Unit */
<this>.#parentBus = null
}
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
class RootBus : MessageBusImpl {
constructor() /* primary */ {
super/*MessageBusImpl*/()
/* <init>() */
}
}