Files
kotlin-fork/compiler/testData/codegen/box/inlineClasses/multifileClass.kt
T
2020-12-23 18:13:09 +01:00

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"
}