Add support for desctructuring of lambda parameters in JVM backend
#KT-5828 In Progress
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
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"
|
||||
}
|
||||
Reference in New Issue
Block a user