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

8 lines
94 B
Plaintext
Vendored

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