// WITH_RUNTIME // PROBLEM: none fun test(list: List) { list.filter { it > 1 }.filter { it > 2 }.filter { it > 3 }.let { println(it) } }