ref: e4b256232bcc27fcc73a80d0b5e1400c5624889d dir: /test/structlit.myr/
type t = struct a : int b : char c : char[,] ;; const main = { var v : t v = [.a=42, .b='x', .c="foo"] -> v.a }