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