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

4 lines
121 B
Plaintext
Vendored

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