ref: d8959a4a6d41b0a1328d81eef7c29d10ec669f8e dir: /test/genericmatch.myr/
use std type t(@a) = union `Foo @a `Bar ;; const main = { match `Foo 123 | `Foo a: std.exit(0xf) | `Bar: std.exit(0x0) ;; }