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

8 lines
101 B
Kotlin

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