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

10 lines
142 B
Kotlin

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