Files
kotlin-fork/idea/testData/inspectionsLocal/replaceCollectionCountWithSize/countOfIterable.kt
T
2020-04-15 18:38:37 +02:00

7 lines
102 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
fun foo(iterable: Iterable<String>) {
iterable.<caret>count()
}