mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
Also add a deprecated extension property to help migration. This is done to unify getting size of arrays and collections
17 lines
393 B
Kotlin
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"
|
|
}
|