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