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

9 lines
96 B
Kotlin
Vendored

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