[Tests] Add IR text tests for KT-57105

This commit is contained in:
Kirill Rakhman
2023-03-08 17:36:29 +01:00
committed by Space Team
parent 6964121c15
commit 2706e5502f
9 changed files with 209 additions and 0 deletions
@@ -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
}
}