f615ed2f26
This reverts commit d61158a1
10 lines
177 B
Plaintext
Vendored
10 lines
177 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
data class XY(val x: Int, val y: Int)
|
|
fun test(xys: Array<XY>) {
|
|
xys.forEach { (x, y) ->
|
|
println(x)
|
|
val y = y + x
|
|
println(y)
|
|
}
|
|
} |