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