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

7 lines
74 B
Kotlin
Vendored

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