ref: e01e8d1bd5f6412dedd7370b7e2ce1d55f7b7eee
dir: /test/structlit.myr/
/* checks that we can create struct literals with named initializers. exits with 42. */ type t = struct a : int b : char c : char[,] ;; const main = { var v : t v = [.a=42, .b='x', .c="foo"] -> v.a }