// IS_APPLICABLE: false // WITH_RUNTIME data class XY(var x: Int, var y: Int) fun test(xys: Array) { for (xy in xys) { xy.x++ xy.y-- } }