Files
kotlin-fork/compiler/testData/codegen/box/classLiteral/bareArray.kt
T

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"
}