Files
kotlin-fork/idea/testData/intentions/iterateExpression/dataClassCollectionIterator.kt.after
T

8 lines
166 B
Plaintext
Vendored

// WITH_RUNTIME
data class Foo(val id: Int, val name: String)
fun test() {
for ((id, name) in listOf(Foo(123, "def"), Foo(456, "abc"))) {
<caret>
}
}