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

6 lines
85 B
Kotlin

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