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