9a4a3d1f49
^KT-56543 Merge-request: KT-MR-9299 Merged-by: Dmitrii Gridin <dmitry.gridin@jetbrains.com>
14 lines
353 B
Kotlin
Vendored
14 lines
353 B
Kotlin
Vendored
// IGNORE_REVERSED_RESOLVE
|
|
class A(val next: A? = null) {
|
|
val x: String
|
|
init {
|
|
<!VAL_REASSIGNMENT!>next?.x<!> = "a"
|
|
this@A.x = "b"
|
|
<!VAL_REASSIGNMENT!>this.x<!> = "c"
|
|
x = "d" // don't repeat the same diagnostic again with this receiver
|
|
this@A.x = "e"
|
|
|
|
<!VAL_REASSIGNMENT!>next?.x<!> = "f"
|
|
}
|
|
}
|