shithub: mc

ref: 78c19177f70b9b5c798e815c34e63aa3634214f1
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")
}