Files
kotlin-fork/idea/testData/intentions/removeBraces/forWithLocalVariable.kt
T
Toshiaki Kameyama 04638eea6b Remove braces intention: fix caret position
#KT-31443 Fixed
2019-05-17 11:18:44 +07:00

5 lines
75 B
Kotlin
Vendored

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