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

12 lines
157 B
Plaintext

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