ref: 0766e6b1624a4074a1564d274c2fd029b799901c 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 }