ref: dc52d457fd6efb778cb91a7912e5c1329d8c34ef dir: /test/genericret.myr/
use std type t(@a) = union `Val @a `None ;; const f = {-> t(int) -> `None } const main = { match f() `None: -> 42;; ;; -> 0 }