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