示例:
class Foo { fun s() = "" fun test() { s() } }
该快速修复会显式指定 this:
class Foo { fun s() = "" fun test() { this.s() } }