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

7 lines
115 B
Kotlin
Vendored

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