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

9 lines
122 B
Kotlin
Vendored

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