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

13 lines
209 B
Kotlin
Vendored

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