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