// TARGET_BACKEND: JVM inline fun f(x: Array) = x as Array fun box(): String = try { f(arrayOf(42)) "Fail" } catch (e: Exception) { "OK" }