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

11 lines
164 B
Kotlin

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