blob: 9c631d5167f10d9e96097e11c8a9ea47b8338214 [file]
// "Make 'Foo' data class" "true"
// WITH_RUNTIME
class Foo(val bar: String, var baz: Int)
fun test() {
val list = listOf(Foo("A", 1))
for ((foo, bar) in list<caret>) {
}
}