7e28cb1fe3
Related to KT-15476
5 lines
115 B
Kotlin
Vendored
5 lines
115 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun test(): List<Int> {
|
|
return mutableSetOf(1, 2, 3).<caret>filter { it > 1 }.map { it * 2 }
|
|
} |