[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,10 @@
class RootBus: MessageBusImpl()
open class MessageBusImpl {
val parentBus: Any?
init {
this as RootBus
parentBus = null
}
}