Files
kotlin-fork/idea/testData/refactoring/introduceVariable/NameSuggestionBug2.kt
T

12 lines
136 B
Kotlin
Vendored

class For {
var xxx: For? = null
}
fun foo(f: For) {
<selection>f.xxx</selection>
if (true) {
val xxx = 1
}
}