Files
kotlin-fork/idea/testData/inspectionsLocal/explicitThis/nestedReceivers.kt
T

18 lines
219 B
Kotlin
Vendored

// WITH_RUNTIME
// PROBLEM: none
class Foo {
val s = ""
fun test() {
Bar().apply {
"".run {
<caret>this@apply.s
}
}
}
}
class Bar {
val s = ""
}