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

5 lines
154 B
Plaintext
Vendored

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