ref: e285c2cb9e9a0fcdd2c4dce862842b691713e7a0 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 }