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