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

18 lines
193 B
Kotlin
Vendored

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