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

6 lines
171 B
Plaintext
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'count{}'"
fun foo(list: List<String>): Int {
val <caret>count = 1 + list.count { it.isNotBlank() }
return count
}