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

12 lines
124 B
Plaintext
Vendored

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