There is nothing special about the `apply` functio...
# intellij
o
There is nothing special about the
apply
function, so the suggestion should be a little bit more generic. Consider several `this`es in context:
Copy code
a.apply {
   b.apply {
      with(c) {
        // here “thises” are c,b,a
      }
   }
}
What completion should show near the comment here?