ref: 40d6f7b5cc0cb9e5de1675a1441ad0dfc0a66bda 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) }