ref: c4030c7f8d157876db45c7becdf192065640e68d
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 | `std.Some v: std.put("val = {}\n", v) | `std.None: std.die("Unreachable\n") ;; }