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)
}
}