Files
kotlin-fork/idea/testData/inspectionsLocal/collections/convertCallChainIntoSequence/flatten2.kt
T

4 lines
106 B
Kotlin
Vendored

// WITH_RUNTIME
fun test() {
listOf(listOf(1), listOf(2, 3)).<caret>filter { it.size > 1 }.flatten()
}