ref: bb3c52370a22d2fe3c0ad5c03d3914616ee0fb55
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 }