13 lines
207 B
Plaintext
Vendored
13 lines
207 B
Plaintext
Vendored
// 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(){} |