Files
kotlin-fork/idea/testData/intentions/iterationOverMap/DataClassUnused.kt.after
T

6 lines
116 B
Plaintext
Vendored

// WITH_RUNTIME
data class XY(val x: String, val y: String)
fun test(xys: Array<XY>) {
for ((x, y) in xys) {}
}