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