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

4 lines
98 B
Kotlin
Vendored

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