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

13 lines
208 B
Kotlin

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