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