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

6 lines
167 B
Plaintext
Vendored

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