Files
kotlin-fork/backend.native/tests/external/codegen/box/boxingOptimization/foldRange.kt
T
2017-03-13 15:31:46 +03:00

12 lines
169 B
Kotlin

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