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

10 lines
138 B
Kotlin

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