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