例:
class Foo { fun s() = "" fun test() { s() } }
クイックフィックスを使用すると、this が明示的に指定されます。
class Foo { fun s() = "" fun test() { this.s() } }