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

11 lines
161 B
Kotlin

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