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

12 lines
183 B
Kotlin

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