ref: 57d3cab36e26b6f18dfc4832caa301ef953fb1d9 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 }