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

14 lines
208 B
Kotlin

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