Is there a YT ticket about nested destructuring? L...
# announcements
h
Is there a YT ticket about nested destructuring? Like in
Copy code
listOf("anna", "john", "max")
    .withIndex()
    .zip(listOf("berlin", "toronto", "london"))
    .forEach { ((index, name), city) ->
        //dostuff
    }
which fails currently.