// WITH_RUNTIME // INTENTION_TEXT: "Replace with 'mapNotNullTo(){}'" fun foo(list: List, target: MutableList) { for (s in list) { val length = s?.length ?: continue target.add(length) } }