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

7 lines
85 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo() {
var map = mapOf(1 to true)
map.<caret>count()
}