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