ref: 5850140d219ed3f49c735c8933f752f25d2af0f3 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 }