// WITH_RUNTIME // INTENTION_TEXT: "Replace with 'mapNotNullTo(){}'" fun foo(list: List, target: MutableList) { list.mapNotNullTo(target) { it?.length } }