Files
kotlin-fork/idea/testData/intentions/removeBraces/forWithLocalVariable.kt
T

5 lines
75 B
Kotlin
Vendored

fun foo(a: List<Int>) {
for (x in a) <caret>{
val y = x
}
}