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