ref: 949eb0559d34c181134b810d16d845f7609c2222 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 }