mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
18 lines
388 B
Kotlin
Vendored
18 lines
388 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
import kotlin.test.assertEquals
|
|
|
|
inline fun <reified T> copy(c: Collection<T>): Array<T> {
|
|
return c.toTypedArray()
|
|
}
|
|
|
|
fun box(): String {
|
|
val a: Array<String> = copy(listOf("a", "b", "c"))
|
|
assertEquals("abc", a.joinToString(""))
|
|
|
|
val b: Array<Int> = copy(listOf(1,2,3))
|
|
assertEquals("123", b.map { it.toString() }.joinToString(""))
|
|
|
|
return "OK"
|
|
}
|