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

8 lines
106 B
Kotlin

fun doSomething<T>(a: T) {}
fun foo() {
for<caret> (i in 1..4) {
doSomething("test")
}
}