예:
class Foo { fun s() = "" fun test() { s() } }
빠른 수정에서는 this를 명시적으로 지정합니다.
class Foo { fun s() = "" fun test() { this.s() } }