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

11 lines
207 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
fun foo(list: List<String>): Long {
var count = 0L
<caret>for (s in list) {
if (s.length > 10) {
count++
}
}
return count
}