Files
kotlin-fork/compiler/testData/codegen/box/arrays/kt7338.kt
T
2019-11-19 11:00:09 +03:00

16 lines
366 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
// IGNORE_BACKEND: NATIVE
// IGNORE_BACKEND: JS_IR
// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
// WITH_RUNTIME
fun foo(x : Any): String {
return if(x is Array<*> && x.isArrayOf<String>()) (x as Array<String>)[0] else "fail"
}
fun box(): String {
return foo(arrayOf("OK"))
}