ref: 7096d0e99d9deb053a7763f49b2b1b7b1df20a6a 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) }