// WITH_RUNTIME data class XY(val x: Int, val y: Int) fun foo(list: List) { for (element in list) { val (x, y) = element } }