Reports an explicit this when it can be omitted.

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
  }