[Tests] Add IR text tests for KT-57105
This commit is contained in:
committed by
Space Team
parent
6964121c15
commit
2706e5502f
@@ -0,0 +1,25 @@
|
||||
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
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user