Files
kotlin-fork/idea/testData/intentions/removeBraces/ifWithComment.kt
T
2014-07-10 15:05:18 +04:00

9 lines
118 B
Kotlin

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