ref: 28920020c79d99633a69d19f05a56e73bb3356c4 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 }