// WITH_RUNTIME // IS_APPLICABLE: false fun foo(list: List, target: MutableList) { for (s in list) { if (s.length > 0) target.add(0) } }