blob: bc4d852b74956cfb19841d08be20e3a71352ad51 [file]
class A(val next: A? = null) {
val x: String
init {
next?.<!VAL_REASSIGNMENT!>x<!> = "a"
x = "b"
this.<!VAL_REASSIGNMENT!>x<!> = "c"
<!VAL_REASSIGNMENT!>x<!> = "d" // don't repeat the same diagnostic again with this receiver
this.<!VAL_REASSIGNMENT!>x<!> = "e"
next?.<!VAL_REASSIGNMENT!>x<!> = "f"
}
}