ref: d8959a4a6d41b0a1328d81eef7c29d10ec669f8e
dir: /test/genericret.myr/
use std type t(@a) = union `Val @a `None ;; const f = {-> t(int) -> `None } const main = { match f() | `None: std.exit(42) | _: std.die("Impossible match failure\n"); ;; std.exit(0) }