ref: 1ac199a3e2c150873279adf3a36f9a8f94e8fd60 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 }