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

11 lines
165 B
Kotlin
Vendored

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