f49cf2d5ca
#KT-43682 Fixed
11 lines
275 B
Kotlin
Vendored
11 lines
275 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// DONT_TARGET_EXACT_BACKEND: WASM
|
|
|
|
fun box(): String {
|
|
val uia = uintArrayOf()
|
|
val uia2 = uintArrayOf()
|
|
// UIntArray is a multifile class, so we need to know where to search for extension method copyInto.
|
|
uia.copyInto(uia2)
|
|
return "OK"
|
|
}
|