// WITH_RUNTIME // INTENTION_TEXT: "Replace with 'sumBy{}'" // IS_APPLICABLE_2: false fun foo(list: List): Int { var l = 0 for (item in list) { l += item.getShort() } return l } fun String.getShort(): Short = TODO()