Files
kotlin-fork/compiler/testData/ir/irText/classes/smartCastInValInitialization.kt.txt
T
2023-03-10 09:30:51 +00:00

26 lines
338 B
Kotlin
Vendored

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