Files
2020-03-19 09:51:01 +03:00

5 lines
126 B
Kotlin
Vendored

fun foo() {
fun convert(vararg paths: String): Array<String> = paths.toList().toTypedArray()
convert("1", "2", "3")
}