Removed reified to fix the bootstrap. The @library annotation prevents from making the function inline.

This commit is contained in:
Anton Bannykh
2016-11-15 16:49:31 +03:00
parent 09072f6cdc
commit b185715aeb
+1 -1
View File
@@ -20,7 +20,7 @@ import java.util.Comparator
import kotlin.comparisons.naturalOrder
@library("copyToArray")
public fun <reified T> Collection<T>.toTypedArray(): Array<T> = noImpl
public fun <T> Collection<T>.toTypedArray(): Array<T> = noImpl
@library("copyToArrayImpl")