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

10 lines
157 B
Kotlin

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