7 lines
143 B
Kotlin
Vendored
7 lines
143 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
// WITH_RUNTIME
|
|
|
|
data class XY(val x: String, val y: String)
|
|
fun test(xys: Array<XY>) {
|
|
for (<caret>xy in xys) {}
|
|
} |