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

13 lines
178 B
Plaintext

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