Files
kotlin-fork/idea/testData/intentions/splitIf/splitIfWithElse.kt
T

12 lines
179 B
Kotlin

fun doSomething<T>(a: T) {}
fun foo() {
val a = true
val b = false
if (a <caret>&& b) {
doSomething("test")
} else {
doSomething("test2")
}
}