Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
loopToCallChain
/
sum
/
bytes.kt
blob: ffe3319a03f6c208cbc6f362fde280b1721cfc95 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'sum()'"
// IS_APPLICABLE_2: false
fun foo
(
list
:
List
<
Byte
>):
Int
{
var
s
=
0
<caret>
for
(
item
in
list
)
{
s
+=
item
}
return
s
}