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

8 lines
102 B
Kotlin
Vendored

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