ref: dc0ce7c68fd5e1a56a13960ba7121a38da0a55cb dir: /test/matchmixed.myr/
use std type u = union `A `B ;; const main = { match "asdf" | `A: std.put("Got a\n") | `B: std.put("Got b\n") ;; -> 42 }