8 lines
116 B
Plaintext
Vendored
8 lines
116 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
data class XY(val x: Int, val y: Int)
|
|
|
|
fun foo(list: List<XY>) {
|
|
for ((x, y) in list) {
|
|
}
|
|
} |