Files
kotlin/compiler/testData/codegen/bytecodeText/boxingOptimization/fold.kt
Denis Zharkov 0f5e29df9b tests added
2014-07-15 21:26:53 +04:00

14 lines
180 B
Kotlin

fun foo() : Long {
val x = LongArray(5)
for (i in 0..4) {
x[i] = (i + 1).toLong()
}
return x.fold(0L) { x, y -> x + y }
}
// 0 valueOf
// 0 Value\s\(\)