Files

9 lines
156 B
Kotlin
Vendored

// !LANGUAGE: +BareArrayClassLiteral
fun box(): String {
val x = Array(1) { Any() }
if (x::class != Array::class) return "Fail"
return "OK"
}