// WITH_RUNTIME data class XY(val x: Int, val y: Int) fun test(xys: Array) { xys.forEach { (x, y) -> println(x) val y = y + x println(y) } }