Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
inlineClasses
/
multifileClass.kt
blob: 4d501aa6597c984c05004d7daf25748f9a9cf72b [
file
]
// WITH_STDLIB
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"
}