741e031ff1
Use formatter in converter tests Reformat test data
7 lines
142 B
Kotlin
7 lines
142 B
Kotlin
import java.util.LinkedList
|
|
|
|
open class User() {
|
|
open fun main() {
|
|
var list: MutableList<String?>? = LinkedList<String?>()
|
|
}
|
|
} |