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

7 lines
78 B
Plaintext
Vendored

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