Files
kotlin-fork/idea/testData/intentions/destructuringInLambda/mapIndexedExceptFirst.kt
T
2017-04-05 14:45:48 +03:00

5 lines
212 B
Kotlin
Vendored

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