ref: 11103467867dfd1416f7328b1facbe63da5c0cf5 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 }