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

12 lines
184 B
Kotlin

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