blob: bd7fe977f8ae2aa07dd237ee1835145c644f18b5 [file] [log] [blame]
// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'map{}'"
// IS_APPLICABLE_2: false
import java.util.*
fun foo(list: List<String>) {
bar()
val <caret>result = list.map { it.length }
}
fun bar(){}