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

9 lines
92 B
Kotlin
Vendored

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