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