ref: 5a48547528a4b9bbe31dfc3a99f6b39ff7d8c34e 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) }