ref: 0b296ffc4dfa7765a52a6f83e1dabb2aa81d5c2a 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) ;; }