d56c59d9d7
#KT-3352 in progress
5 lines
138 B
Kotlin
Vendored
5 lines
138 B
Kotlin
Vendored
fun <E> List<*>.toArray(ar: Array<E>): Array<E> = ar
|
|
|
|
fun testArrays(ci : List<Int>) {
|
|
ci.toArray<Int>(<!UNRESOLVED_REFERENCE!>x<!>)
|
|
} |