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

12 lines
184 B
Kotlin

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