Files
kotlin-fork/idea/testData/intentions/destructuringInLambda/mapIndexedLast.kt
T

5 lines
188 B
Kotlin
Vendored

// WITH_RUNTIME
data class Package(val name: String, val version: String, val source: String, val id: String)
val pkgs = listOf<Package>().mapIndexed { i, <caret>p -> p.id to i }.toMap()