Files
kotlin-fork/j2k/tests/testData/ast/list/Lists.kt
T

14 lines
276 B
Kotlin

import java.util.*
public class Lists {
public fun test() {
val xs = ArrayList<Any>()
val ys = LinkedList<Any>()
val zs = ArrayList<Any>()
xs.add(null)
ys.add(null)
xs.clear()
ys.clear()
zs.add(null)
}
}