shithub: mc

ref: 124f45afc8c465541deec8b7775dff2d91f702c6
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")
}