// WITH_RUNTIME data class XY(val x: String, val y: String) fun test(xys: Array) { for ((xx, y) in xys) { println(xx + y) } }