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

11 lines
128 B
Kotlin
Vendored

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