ref: 0022c21553124df1dc02948b4fc27bd3906e4d37 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 }