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

6 lines
85 B
Kotlin
Vendored

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