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