0e721c8fc2
If neither setter nor backing field were found for an assignment call, search overridden properties for backing fields. ^KT-57105 Fixed
17 lines
238 B
Kotlin
Vendored
17 lines
238 B
Kotlin
Vendored
// ISSUE: KT-57105
|
|
|
|
class RootBus: MessageBusImpl()
|
|
|
|
open class MessageBusImpl {
|
|
val parentBus: Any?
|
|
|
|
init {
|
|
this as RootBus
|
|
parentBus = "OK"
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return RootBus().parentBus as String
|
|
}
|