Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
161333d3e7d13dd98386fe346a71a07eadfe4756
/
.
/
compiler
/
testData
/
codegen
/
box
/
callableReference
/
charArrayOf.kt
blob: 8fdcf719048815c969a1832eab8f74e1995241be [
file
]
fun box
():
String
{
val
ref
:
(
CharArray
)
->
CharArray
=
::
charArrayOf
val arr
=
ref
(
charArrayOf
(
'O'
,
'K'
))
return
"${arr[0]}${arr[1]}"
}