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