shithub: mc

ref: 0f7fbc2dcbb934a3aa62aa4a69db432b4d20b7c1
dir: /test/destructuretup.myr/

View raw version
use std

const main = {
    var a,b
    ((a, b), _) = ((1, 2), 3)
    std.assert(a+b == 3, "fail\n")
}