Files
kotlin-fork/js/js.translator/testData/box/standardClasses/arrayFunctionConstructor.kt
T
2016-09-29 12:00:43 +03:00

8 lines
133 B
Kotlin
Vendored

package foo
val f = { i: Int -> i + 1 }
val a = Array(3, f)
fun box() = if (a[0] == 1 && a[2] == 3 && a[1] == 2) "OK" else "fail"