// WITH_RUNTIME fun test(list: List?): List? { return list?.filter { it > 1 }!!.asSequence().filter { it > 2 }.filter { it > 3 }.toList() }