Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
06ab8cc69e303e70578de24dd9a1cf4ebafff93a
/
.
/
compiler
/
testData
/
codegen
/
box
/
classLiteral
/
bareArray.kt
blob: baa631a3370d7e73b4ac9332d5fb1f6e8802319c [
file
]
// LANGUAGE: +BareArrayClassLiteral
fun box
():
String
{
val x
=
Array
(
1
)
{
Any
()
}
if
(
x
::
class
!=
Array
::
class
)
return
"Fail"
return
"OK"
}