Files
kotlin-fork/idea/testData/intentions/removeBraces/forWithLocalVariable.kt
T
2014-07-10 15:05:18 +04:00

5 lines
75 B
Kotlin

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