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

17 lines
217 B
Kotlin
Vendored

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