539c55c5b2
Part of KT-26650
5 lines
118 B
Plaintext
Vendored
5 lines
118 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
fun List<Int>.test(): List<Int> {
|
|
return asSequence().filter { it > 1 }.map { it * 2 }.toList()
|
|
} |