ref: 0ce2bbf3b5dbb9c899a9a680ff8262be44b1d5ef 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) }