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

7 lines
78 B
Kotlin
Vendored

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