725df49c8c
(cherry picked from commit f3fa779)
11 lines
124 B
Plaintext
Vendored
11 lines
124 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
class WithVarArg(vararg zz: String) {
|
|
|
|
val x: List<String>
|
|
|
|
init {
|
|
x = listOf(*zz)
|
|
}
|
|
|
|
} |