ref: ed1f9b6de0b57d098f48030ce861311c1918c8f3 dir: /test/structarray.myr/
type t = struct a : int[42] ;; const main = { var v : t v.a[0] = 11 v.a[1] = 20 -> 2*v.a[0] + v.a[1] }