741e031ff1
Use formatter in converter tests Reformat test data
14 lines
354 B
Kotlin
14 lines
354 B
Kotlin
import java.util.*
|
|
|
|
public open class Lists() {
|
|
public open fun test() {
|
|
var xs: MutableList<Any?>? = ArrayList<Any?>()
|
|
var ys: MutableList<Any?>? = LinkedList<Any?>()
|
|
var zs: ArrayList<Any?>? = ArrayList<Any?>()
|
|
xs?.add(null)
|
|
ys?.add(null)
|
|
xs?.clear()
|
|
ys?.clear()
|
|
zs?.add(null)
|
|
}
|
|
} |