``` class X() { fun test() { with(var, { ...
# announcements
a
Copy code
class X() {
  fun test() {
    with(var, {
      val outerInstance = this;  // `this` refers to `var`, and not to the `X` instance...
    })
  }
}