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

11 lines
119 B
Plaintext
Vendored

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