The Kotlin documentation describes how to access this expressions in nested classes.
Is it possible to access this expressions in nested unnamed functions? e.g:
str = "abcde"
str.run {
this.substring(0..2).run {
println("${this} is a substring of ${???}")
}