ref: 4a9ebe2a52eaf6d632f8f092fcb5a860205b026c 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 }