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