Example:
class Foo { fun s() = "" fun test() { s() } }
The quick fix specifies this explicitly:
class Foo { fun s() = "" fun test() { this.s() } }