Files
kotlin-fork/idea/testData/intentions/loopToCallChain/indexOfFirst_ifAssign.kt.after
T
2016-08-16 17:38:17 +03:00

6 lines
184 B
Plaintext
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'indexOfFirst{}'"
// IS_APPLICABLE_2: false
fun foo(list: List<String>) {
val <caret>result = list.indexOfFirst { it.length > 0 }
}