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

8 lines
106 B
Kotlin
Vendored

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