725df49c8c
(cherry picked from commit f3fa779)
10 lines
137 B
Kotlin
Vendored
10 lines
137 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
class WithVarArg {
|
|
|
|
val x: List<String>
|
|
|
|
constructor(<caret>vararg zz: String) {
|
|
x = listOf(*zz)
|
|
}
|
|
} |