ref: 3730a2515fa554695c3c424053ed683ac2bdd596 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 }