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