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

}

