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

4 lines
113 B
Plaintext
Vendored

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