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

6 lines
153 B
Plaintext
Vendored

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