Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
replaceAddWithPlusAssign
/
add.kt.after
blob: caef267e1d86ec6711be3182cc7c8a9d253e9ca3 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
// INTENTION_TEXT: Replace 'add()' with '+='
fun foo
()
{
val a
=
arrayListOf
<
Int
>(
1
,
2
,
3
)
a
+=
4
}