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

5 lines
125 B
Kotlin
Vendored

// WITH_RUNTIME
fun test(list: List<Int>) {
list.<caret>map { it * 2 }.map { it * 3 }.map { it * 4 }.groupingBy { it }
}