// WITH_RUNTIME data class XY(val x: String, val y: String) fun foo(list: List) = list.fold("") { prev, (x, y) -> prev + x + y }