8fc5fefc7f
#KT-27104 Fixed
5 lines
131 B
Plaintext
Vendored
5 lines
131 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
fun test(list: List<Int>) {
|
|
list.asSequence().map { it * 2 }.map { it * 3 }.map { it * 4 }.groupingBy { it }
|
|
} |