f950a0246c
Kotlin default import inserter was unable to correctly insert such imports #KT-34165 fixed
12 lines
271 B
Kotlin
Vendored
12 lines
271 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()
|
|
}
|
|
}
|
|
} |