ref: 4ff322bbbc9b8c181b6f48b55c72f5482cec3c88
dir: /test/genericmake.myr/
use std type t(@ty) = union `Some @ty `None ;; const make = {v -> `Some v } const main = { var x x = make(123) match x | `Some v: std.put("val = {}\n", v) | `None: std.die("Unreachable\n") ;; }