ref: a3f00eee7003eae5aaf6c91fd674915e098b8b18 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 }