ref: 16f5afe322e39f1716716700188664305b829d59 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] }