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

14 lines
211 B
Plaintext

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