Files
kotlin/compiler/testData/codegen/box/vararg/varargsAndFunctionLiterals.kt
Alexander Udalov 128c938965 Make Array.size() a function instead of a property
Also add a deprecated extension property to help migration. This is done to
unify getting size of arrays and collections
2014-11-17 15:02:38 +03:00

17 lines
393 B
Kotlin

fun foo(a: Int, vararg b: Int, f: (IntArray) -> String): String {
return "test" + a + " " + f(b)
}
fun box(): String {
val test1 = foo(1) {a -> "" + a.size()}
if (test1 != "test1 0") return test1
val test2 = foo(2, 2) {a -> "" + a.size()}
if (test2 != "test2 1") return test2
val test3 = foo(3, 2, 3) {a -> "" + a.size()}
if (test3 != "test3 2") return test3
return "OK"
}