Files
kotlin/compiler/testData/codegen/box/destructuringDeclInLambdaParam/otherParameters.kt
2018-08-09 14:22:50 +03:00

12 lines
276 B
Kotlin
Vendored

data class A(val x: String, val y: String)
fun foo(a: A, block: (Int, A, String) -> String): String = block(1, a, "#")
fun box(): String {
val x = foo(A("O", "K")) { i, (x, y), v -> i.toString() + x + y + v }
if (x != "1OK#") return "fail 1: $x"
return "OK"
}