9a4a3d1f49
^KT-56543 Merge-request: KT-MR-9299 Merged-by: Dmitrii Gridin <dmitry.gridin@jetbrains.com>
12 lines
286 B
Kotlin
Vendored
12 lines
286 B
Kotlin
Vendored
// IGNORE_REVERSED_RESOLVE
|
|
class A(val next: A? = null) {
|
|
<!MUST_BE_INITIALIZED_OR_BE_ABSTRACT!>val x: String<!>
|
|
init {
|
|
<!VAL_REASSIGNMENT!>next?.x<!> = "a"
|
|
}
|
|
}
|
|
|
|
class B(val next: B? = null) {
|
|
var x: String = next?.x ?: "default" // it's ok to use `x` of next
|
|
}
|