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