108dea5b46
So #KT-15476 Fixed
5 lines
124 B
Plaintext
Vendored
5 lines
124 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
fun test(): List<Int> {
|
|
return listOf(1, 2, 3).asSequence().filter { it > 1 }.map { it * 2 }.toList()
|
|
} |