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

6 lines
153 B
Plaintext
Vendored

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