blob: c07023a085235f6b3afe70dfb08cc9de77a13e39 [file]
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"
}
}