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

13 lines
194 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
// WITH_RUNTIME
import kotlin.test.assertEquals
fun box(): String {
val result = (1..5).fold(0) { x, y -> x + y }
assertEquals(15, result)
return "OK"
}