what about recursively destructuration? ``` fun...
# language-proposals
e
what about recursively destructuration?
Copy code
fun a() = Pair(0 to 1, 2 to 3)

    fun b() {
        val ((a, b), (c, d)) = a()
    }
k
there's an issue for that
e
thanks kirill