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

8 lines
89 B
Kotlin
Vendored

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