0722c5c13a
#KT-19565 fixed
13 lines
272 B
Kotlin
Vendored
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()
|
|
}
|
|
}
|
|
} |