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