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

6 lines
125 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
fun test(list: List<Int>) {
list.<caret>groupingBy { it }.reduce { _, acc, _ -> acc }
}