// WITH_RUNTIME fun test(list: List): List { return list // comment1 .filter { it > 1 } // comment2 .map { it * 2 } // comment3 }