Files
kotlin-fork/idea/testData/intentions/loopToCallChain/moveInitializationsCloserToLoop.kt.after
T
2016-08-16 17:38:17 +03:00

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(){}