Files
kotlin-fork/j2k/testData/fileOrElement/mutableCollections/Iterator2.kt
T
2017-09-18 14:07:57 +03:00

13 lines
272 B
Kotlin
Vendored

import java.util.ArrayList
class TestMutableCollection {
val list: MutableList<String> = ArrayList()
fun test() {
val it = list.iterator()
while (it.hasNext()) {
val s = it.next()
if (s == "") it.remove()
}
}
}