ref: 36bcb6d94f7ef17c9e40cf68fd26d78ec814c596
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") ;; }