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