ref: 645ac9298c8d9c7ffee3da6c849a389bcc9adcb2 dir: /test/matchmixed.myr/
use std type u = union `A `B ;; const main = { match "asdf" | `A: std.put("Got a\n") | `B: std.put("Got b\n") ;; -> 42 }