9dd8eda1c9
Library methods such as 'listOf' are resolved to have the package fragments as their parents, but JVM expects their containing file classes as parents. This fix generates those file classes and uses them as parent replacements for such library methods.
19 lines
413 B
Kotlin
Vendored
19 lines
413 B
Kotlin
Vendored
// KJS_WITH_FULL_RUNTIME
|
|
// 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"
|
|
}
|