4 lines
121 B
Plaintext
Vendored
4 lines
121 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
fun test() {
|
|
listOf(listOf(1), listOf(2, 3)).asSequence().filter { it.size > 1 }.flatten().toList()
|
|
} |