ref: 02922f0289a990a65ad7ede45f2a2e54df7c7162 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 }