ref: 3cacd3499c4b91c972d1e2daede8a9c8e3efe247 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") ;; std.exit(42) }