ref: 03af679a2a685afe93242d2751ea1a94d9c17569
dir: /test/generictype.myr/
/* checks that parameterized types work. exits with 0. */ type option(@a) = union `Some @a `None ;; const main = { var v v = `Some 123 match v `None: -> 1;; `Some 123: -> 0;; ;; -> 60 }