7f50e6e70e
(cherry picked from commit 93aaa48)
9 lines
140 B
Plaintext
Vendored
9 lines
140 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
class VarArg {
|
|
constructor(vararg x: String) {
|
|
this.strList = x.toList()
|
|
}
|
|
|
|
val strList: List<String>
|
|
} |