ref: 6a7f16a2b8e1be9639a79726d8195fc6cfae27f1 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 }