ref: 46ed41336621a10e35d0febce05d0ac1a4dcfa48 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] }