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

11 lines
160 B
Kotlin
Vendored

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