7e28cb1fe3
Related to KT-15476
6 lines
162 B
Kotlin
Vendored
6 lines
162 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun test(list: List<Int>) {
|
|
val associateTo: MutableMap<Int, Int> = list.<caret>filter { it > 1 }.associateTo(mutableMapOf()) { it to it }
|
|
}
|