Files
kotlin-fork/compiler/testData/codegen/box/arrays/kt7009.kt
T
2018-06-09 19:15:38 +03:00

8 lines
163 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
// WITH_RUNTIME
fun box() : String {
val value = (1 to doubleArrayOf(1.0)).second[0]
return if (value == 1.0) "OK" else "fail"
}