Files
kotlin-fork/idea/testData/inspectionsLocal/explicitThis/syntheticJavaProperty_sameNameVariable.kt
T
2018-06-05 15:52:16 +03:00

12 lines
125 B
Kotlin
Vendored

// WITH_RUNTIME
// PROBLEM: none
fun test() {
val isB = true
Foo().apply {
<caret>this.isB = true
}
}