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

9 lines
118 B
Kotlin
Vendored

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