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

15 lines
187 B
Kotlin
Vendored

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