ref: 6565eb50cfcc4e11ed5e350cdae30dc861dc0a8e 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) }