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