ref: 771cd99ddf086d2feb4112fef7082f45a004fea9 dir: /test/struct.myr/
type pair = struct a : int b : int ;; const main = { var s : pair s.a = 12 s.b = 30 -> s.a + s.b }