Files
kotlin-fork/idea/testData/inspectionsLocal/implicitThis/multipleReceivers.kt
T

15 lines
165 B
Kotlin
Vendored

// WITH_RUNTIME
class Foo {
fun Bar.s() = ""
}
class Bar
fun test() {
Bar().apply {
Foo().apply apply2@ {
<caret>s()
}
}
}