Files
kotlin-fork/idea/testData/intentions/addBraces/addBracesForIfWithIndent.kt
T

10 lines
148 B
Kotlin
Vendored

fun <T> doSomething(a: T) {}
fun foo(i: Int) {
<caret>if (i == 1)
doSomething(1)
else
doSomething(0)
doSomething(-1)
}