Files
kotlin-fork/compiler/testData/codegen/box/boxingOptimization/fold.kt
T
2016-11-09 21:41:12 +03:00

18 lines
324 B
Kotlin
Vendored

// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
// WITH_RUNTIME
import kotlin.test.assertEquals
fun box() : String {
val x = LongArray(5)
for (i in 0..4) {
x[i] = (i + 1).toLong()
}
assertEquals(15L, x.fold(0L) { x, y -> x + y })
return "OK"
}