Files
kotlin-fork/idea/testData/intentions/removeBraces/if.kt
T

8 lines
100 B
Kotlin

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