9a725b99b2
#KT-26650 Fixed
5 lines
126 B
Plaintext
Vendored
5 lines
126 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
fun test(i: Iterable<Int>): List<Int> {
|
|
return i.asSequence().filter { it > 1 }.map { it * 2 }.toList()
|
|
} |