Files
kotlin-fork/compiler/fir/resolve/testData/resolveWithStdlib/arrayInLocal.kt
T
2020-02-14 09:18:52 +03:00

5 lines
126 B
Kotlin
Vendored

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