ref: 4e4f36fcf5177b0c51c4bcb5a203c5f86edf6e00 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) }