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