// WITH_RUNTIME // IS_APPLICABLE: false // IS_APPLICABLE_2: false fun foo(list: List, target: MutableList) { for (s in list) { val length = if (s.isNotEmpty()) s.length else continue target.add(length.toString()) } }