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

15 lines
176 B
Plaintext
Vendored

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