ref: 15e2f6489181348e1fe506cc4d70d3a6c413f0d6 dir: /test/structret.myr/
type pair = struct a : int b : int ;; const f = { var s s.a = 12 s.b = 30 -> s } const main = { var s : pair s = f() -> s.a + s.b }