Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
loopToCallChain
/
toCollection
/
badReceiver1.kt
blob: 2d051ed771240f4d5d3548f8ea71d856c81efc02 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
// IS_APPLICABLE: false
// IS_APPLICABLE_2: false
fun foo
(
list
:
List
<
MutableCollection
<
Int
>>)
{
<caret>
for
(
collection
in
list
)
{
collection
.
add
(
collection
.
size
)
}
}