Files
kotlin-fork/compiler/testData/codegen/box/classLiteral/bareArray.kt
T
2020-04-02 12:42:50 +03:00

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