Files
kotlin-fork/nj2k/testData/newJ2k/list/ForEach.kt
T
2019-07-10 13:16:52 +03:00

15 lines
310 B
Kotlin
Vendored

// ERROR: Unresolved reference: LinkedList
import java.util.ArrayList
class ForEach {
fun test() {
val xs = ArrayList<Any>()
val ys: MutableList<Any> = LinkedList<Any>()
for (x in xs) {
ys.add(x)
}
for (y in ys) {
xs.add(y)
}
}
}