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

7 lines
114 B
Kotlin

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