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

11 lines
159 B
Kotlin

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