this
Example:
class C { private val i = 1 fun f() = this.i }
The quick-fix removes the redundant this:
class C { private val i = 1 fun f() = i }