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