blob: 68958e74e83e49696609d583192a747d62a6cd8e [file]
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>() */
}
}