blob: 5f794dfb21a6c76464d5cc8d16339eb59f19de05 [file] [log] [blame]
// WITH_RUNTIME
data class XY(val x: String, val y: String)
fun test(xys: Array<XY>) {
for ((x, y) in xys) {
println(x + y + x + y)
}
}