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

5 lines
141 B
Plaintext
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with '+='"
fun foo(list: List<String>, target: MutableList<String>) {
<caret>target += list
}