mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
5 lines
117 B
Kotlin
Vendored
5 lines
117 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
fun box(): String {
|
|
return if ((arrayOf(1, 2, 3)::get)(1) == 2) "OK" else "Fail"
|
|
}
|