Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
loopToCallChain
/
toCollection
/
addToCollection.kt.after
blob: f2213239a51c5729b0389994019ece0bd8472bbf [
file
] [
log
] [
blame
]
// WITH_RUNTIME
// INTENTION_TEXT: "Replace with '+='"
// IS_APPLICABLE_2: false
fun foo
(
list
:
List
<
String
>,
target
:
MutableList
<
String
>)
{
<caret>
target
+=
list
}