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