12 lines
181 B
Plaintext
Vendored
12 lines
181 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
// INTENTION_TEXT: "Replace with 'map{}'"
|
|
import java.util.*
|
|
|
|
fun foo(list: List<String>) {
|
|
|
|
bar()
|
|
|
|
val <caret>result = list.map { it.length }
|
|
}
|
|
|
|
fun bar(){} |