ref: 3982a9ac9debac6f6c0670f59d3577610b69d4f9 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 }