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