ref: 99182bb1ece37aa9bd3c2c5466c650caa10e4d4b dir: /test/structptr.myr/
type pair = struct a : int b : int ;; const frob = {s s.a = 12 s.b = 30 } const main = { var s : pair frob(&s) -> s.a + s.b }