Reports usages of implicit this.

Example:


  class Foo {
      fun s() = ""

      fun test() {
          s()
      }
  }

The quick fix specifies this explicitly:


  class Foo {
      fun s() = ""

      fun test() {
          this.s()
      }
  }