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

5 lines
139 B
Plaintext
Vendored

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