ref: fc4fca0fa6c64a0fbe6fbb5c8faf1e5640b784ea 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") ;; std.exit(42) }