Files
kotlin-fork/idea/testData/intentions/loopToCallChain/count2.kt
T
Valentin Kipyatkov db53794663 Supported "count()"
2016-08-16 17:38:02 +03:00

9 lines
186 B
Kotlin
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'count()'"
fun foo(list: Iterable<String>): Int {
var count = 0
<caret>for (s in list) {
count++
}
return count
}