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

12 lines
186 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")
}
}