ref: 4696e9dc4fda1400c881f2177183da3b024633f1
dir: /test/nestucon.myr/
use std type t = struct x : union `Int int `Str byte[:] ;; ;; const main = { var a : t a = [.x = `Str "asdf"] match a | [.x=`Str s]: std.put("{}\n", s) | _: std.die("Impossible match failure\n") ;; }