ref: 1eb59b7b99d6dbb3c37cc9c8503450427f4d9564 dir: /test/structasn.myr/
type pair = struct a : int b : int ;; const main = { var x : pair var y : pair x.a = 12 x.b = 30 y = x -> y.a + y.b }