interface IFoo {
  fun bar() {
    <this>.foo()
  }

  abstract fun foo()

}

