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