// WITH_RUNTIME // INTENTION_TEXT: "Replace with 'mapIndexedTo(){}'" // IS_APPLICABLE_2: false fun foo(list: List, target: MutableList) { list.mapIndexedTo(target) { index, s -> s.hashCode() * index } }