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

7 lines
104 B
Kotlin
Vendored

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