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

11 lines
131 B
Kotlin
Vendored

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