ref: 4a7d019d03fa6c267d27ffb9d90e2472bad4bcbf 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 }