Files
kotlin-fork/idea/testData/inspectionsLocal/collections/convertCallChainIntoSequence/endsWithGroupingBy.kt.after
T
2018-10-09 11:26:50 +03:00

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 }
}