// WITH_RUNTIME fun test(list: List>): List { return list .filter { it.count() > 2 } .map { it + it } .flatMap { it + it } }