Files
kotlin-fork/idea/testData/inspectionsLocal/replaceCollectionCountWithSize/countOfCollection.kt
T

7 lines
84 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo() {
var list = listOf(1,2,3)
list.<caret>count()
}