Files
kotlin/compiler/testData/codegen/box/boxingOptimization/foldRange.kt
2016-11-16 19:50:10 +03:00

12 lines
169 B
Kotlin
Vendored

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