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

12 lines
148 B
Kotlin
Vendored

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