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

6 lines
111 B
Kotlin
Vendored

fun <T> doSomething(a: T) {}
fun foo() {
<caret>if (true) doSomething("test") else doSomething("test2")
}